mirror of
https://github.com/postgres/postgres.git
synced 2026-02-17 01:31:07 -05:00
Suppress uninitialized-variable warning.
This commit is contained in:
parent
6c41cf5977
commit
b3cfcdaad2
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue