pg_restore: Fix memory and file descriptor leak with directory format

found by Coverity
pull/3/head
Peter Eisentraut 14 years ago
parent 693ff85d47
commit d8e5b3427a
  1. 3
      src/bin/pg_dump/pg_backup_directory.c

@ -356,6 +356,9 @@ _PrintFileData(ArchiveHandle *AH, char *filename, RestoreOptions *ropt)
ahwrite(buf, 1, cnt, AH);
free(buf);
if (cfclose(cfp) != 0)
die_horribly(AH, modulename, "could not close data file: %s\n",
strerror(errno));
}
/*

Loading…
Cancel
Save