summaryrefslogtreecommitdiff
path: root/src/bin/pg_dump/pg_backup_tar.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2007-08-06 01:38:57 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2007-08-06 01:38:57 +0000
commit99fa5f458c210c05dd1bb8fdf603f0acc22a0a12 (patch)
treeb9fc6ba4e3913fbeb62b2177d63157e3fc77c8b4 /src/bin/pg_dump/pg_backup_tar.c
parent681690f4e374d88877ea2f4de1baa04f780abd8e (diff)
Fix pg_restore to guard against unexpected EOF while reading an archive file.
Per report and partial patch from Chad Wagner.
Diffstat (limited to 'src/bin/pg_dump/pg_backup_tar.c')
-rw-r--r--src/bin/pg_dump/pg_backup_tar.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/bin/pg_dump/pg_backup_tar.c b/src/bin/pg_dump/pg_backup_tar.c
index 93293fe8058..2f8169f8535 100644
--- a/src/bin/pg_dump/pg_backup_tar.c
+++ b/src/bin/pg_dump/pg_backup_tar.c
@@ -16,7 +16,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_tar.c,v 1.32.2.2 2003/02/01 19:29:26 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_tar.c,v 1.32.2.3 2007/08/06 01:38:57 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -484,7 +484,7 @@ _tarReadRaw(ArchiveHandle *AH, void *buf, size_t len, TAR_MEMBER *th, FILE *fh)
used = avail;
/* Copy, and adjust buffer pos */
- memcpy(buf, AH->lookahead, used);
+ memcpy(buf, AH->lookahead + AH->lookaheadPos, used);
AH->lookaheadPos += used;
/* Adjust required length */
@@ -728,12 +728,13 @@ static int
_ReadByte(ArchiveHandle *AH)
{
lclContext *ctx = (lclContext *) AH->formatData;
- int res;
- char c = '\0';
+ size_t res;
+ unsigned char c;
res = tarRead(&c, 1, ctx->FH);
- if (res != EOF)
- ctx->filePos += res;
+ if (res != 1)
+ die_horribly(AH, modulename, "unexpected end of file\n");
+ ctx->filePos += 1;
return c;
}