Guard against duplicate IDs in input file in SortTocFromFile().
authorTom Lane <[email protected]>
Tue, 17 May 2005 17:31:24 +0000 (17:31 +0000)
committerTom Lane <[email protected]>
Tue, 17 May 2005 17:31:24 +0000 (17:31 +0000)
Per report from Brian Hackett.

src/bin/pg_dump/pg_backup_archiver.c

index 50185ee2bce1679ecd3c0da41cadd75990b1ee2a..c3543e289a8998cf5fc3026894bc891813304248 100644 (file)
@@ -891,24 +891,21 @@ SortTocFromFile(Archive *AHX, RestoreOptions *ropt)
        if (!fh)
                die_horribly(AH, modulename, "could not open TOC file\n");
 
-       while (fgets(buf, 1024, fh) != NULL)
+       while (fgets(buf, sizeof(buf), fh) != NULL)
        {
-               /* Find a comment */
+               /* Truncate line at comment, if any */
                cmnt = strchr(buf, ';');
-               if (cmnt == buf)
-                       continue;
-
-               /* End string at comment */
                if (cmnt != NULL)
                        cmnt[0] = '\0';
 
-               /* Skip if all spaces */
-               if (strspn(buf, " \t") == strlen(buf))
+               /* Ignore if all blank */
+               if (strspn(buf, " \t\r") == strlen(buf))
                        continue;
 
-               /* Get an ID */
+               /* Get an ID, check it's valid and not already seen */
                id = strtol(buf, &endptr, 10);
-               if (endptr == buf || id <= 0 || id > AH->maxDumpId)
+               if (endptr == buf || id <= 0 || id > AH->maxDumpId ||
+                       ropt->idWanted[id - 1])
                {
                        write_msg(modulename, "WARNING: line ignored: %s\n", buf);
                        continue;