aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Gustafsson <dgustafsson@postgresql.org>2021-10-19 12:59:54 +0200
committerDaniel Gustafsson <dgustafsson@postgresql.org>2021-10-19 12:59:54 +0200
commite788883de715be00733615c2224149332f49b0f0 (patch)
tree786fe9a80965a75da3fbcb51ec56ddebd09a5dfd /src
parent57bf8f7b75ec3f1509175006ccf3c139c0d1adc8 (diff)
downloadpostgresql-e788883de715be00733615c2224149332f49b0f0.tar.gz
postgresql-e788883de715be00733615c2224149332f49b0f0.zip
Fix bug in TOC file error message printing
If the blob TOC file cannot be parsed, the error message was failing to print the filename as the variable holding it was shadowed by the destination buffer for parsing. When the filename fails to parse, the error will print an empty string: ./pg_restore -d foo -F d dump pg_restore: error: invalid line in large object TOC file "": .. ..instead of the intended error message: ./pg_restore -d foo -F d dump pg_restore: error: invalid line in large object TOC file "dump/blobs.toc": .. Fix by renaming both variables as the shared name was too generic to store either and still convey what the variable held. Backpatch all the way down to 9.6. Reviewed-by: Tom Lane Discussion: https://postgr.es/m/A2B151F5-B32B-4F2C-BA4A-6870856D9BDE@yesql.se Backpatch-through: 9.6
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_dump/pg_backup_directory.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/bin/pg_dump/pg_backup_directory.c b/src/bin/pg_dump/pg_backup_directory.c
index 853692dc27f..90670a6e209 100644
--- a/src/bin/pg_dump/pg_backup_directory.c
+++ b/src/bin/pg_dump/pg_backup_directory.c
@@ -435,42 +435,42 @@ _LoadBlobs(ArchiveHandle *AH)
{
Oid oid;
lclContext *ctx = (lclContext *) AH->formatData;
- char fname[MAXPGPATH];
+ char tocfname[MAXPGPATH];
char line[MAXPGPATH];
StartRestoreBlobs(AH);
- setFilePath(AH, fname, "blobs.toc");
+ setFilePath(AH, tocfname, "blobs.toc");
- ctx->blobsTocFH = cfopen_read(fname, PG_BINARY_R);
+ ctx->blobsTocFH = cfopen_read(tocfname, PG_BINARY_R);
if (ctx->blobsTocFH == NULL)
fatal("could not open large object TOC file \"%s\" for input: %m",
- fname);
+ tocfname);
/* Read the blobs TOC file line-by-line, and process each blob */
while ((cfgets(ctx->blobsTocFH, line, MAXPGPATH)) != NULL)
{
- char fname[MAXPGPATH + 1];
+ char blobfname[MAXPGPATH + 1];
char path[MAXPGPATH];
- /* Can't overflow because line and fname are the same length. */
- if (sscanf(line, "%u %" CppAsString2(MAXPGPATH) "s\n", &oid, fname) != 2)
+ /* Can't overflow because line and blobfname are the same length */
+ if (sscanf(line, "%u %" CppAsString2(MAXPGPATH) "s\n", &oid, blobfname) != 2)
fatal("invalid line in large object TOC file \"%s\": \"%s\"",
- fname, line);
+ tocfname, line);
StartRestoreBlob(AH, oid, AH->public.ropt->dropSchema);
- snprintf(path, MAXPGPATH, "%s/%s", ctx->directory, fname);
+ snprintf(path, MAXPGPATH, "%s/%s", ctx->directory, blobfname);
_PrintFileData(AH, path);
EndRestoreBlob(AH, oid);
}
if (!cfeof(ctx->blobsTocFH))
fatal("error reading large object TOC file \"%s\"",
- fname);
+ tocfname);
if (cfclose(ctx->blobsTocFH) != 0)
fatal("could not close large object TOC file \"%s\": %m",
- fname);
+ tocfname);
ctx->blobsTocFH = NULL;