Suppress uninitialized-variable warning.

This commit is contained in:
Tom Lane 2011-01-23 13:06:38 -05:00
parent 6c41cf5977
commit b3cfcdaad2
1 changed files with 1 additions and 1 deletions

View File

@ -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;