Skip to content
Snippets Groups Projects
Commit b3cfcdaa authored by Tom Lane's avatar Tom Lane
Browse files

Suppress uninitialized-variable warning.

parent 6c41cf59
No related branches found
No related tags found
No related merge requests found
......@@ -427,7 +427,7 @@ ReceiveAndUnpackTarFile(PGconn *conn, PGresult *res, int rownum)
char current_path[MAXPGPATH];
char fn[MAXPGPATH];
int current_len_left;
int current_padding;
int current_padding = 0;
char *copybuf = NULL;
FILE *file = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment