diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-01-23 13:06:38 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-01-23 13:06:38 -0500 |
commit | b3cfcdaad27bea9bb86d6de6cbf8d184c16fbceb (patch) | |
tree | ed05003f21a4fe047a9faee478310200058b3071 /src | |
parent | 6c41cf5977ca3f13159b980d4b216e3bc9df90e8 (diff) | |
download | postgresql-b3cfcdaad27bea9bb86d6de6cbf8d184c16fbceb.tar.gz postgresql-b3cfcdaad27bea9bb86d6de6cbf8d184c16fbceb.zip |
Suppress uninitialized-variable warning.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_basebackup/pg_basebackup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index 86df4b820d7..8a371504aeb 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -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; |