Commit b3cfcdaa authored by Tom Lane's avatar Tom Lane

Suppress uninitialized-variable warning.

parent 6c41cf59
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment