File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 21
21
*
22
22
*
23
23
* IDENTIFICATION
24
- * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.35 1997/07/23 17:42:25 momjian Exp $
24
+ * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.36 1997/07/28 23:53:54 momjian Exp $
25
25
*
26
26
* Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb
27
27
*
@@ -783,15 +783,17 @@ clearTableInfo(TableInfo *tblinfo, int numTables)
783
783
for (i = 0 ;i < numTables ;++ i ) {
784
784
785
785
if (tblinfo [i ].oid ) free (tblinfo [i ].oid );
786
- if (tblinfo [i ].relname ) free (tblinfo [i ].relname );
787
786
if (tblinfo [i ].relarch ) free (tblinfo [i ].relarch );
788
787
if (tblinfo [i ].relacl ) free (tblinfo [i ].relacl );
789
- if (tblinfo [i ].sequence ) free (tblinfo [i ].sequence );
790
788
if (tblinfo [i ].usename ) free (tblinfo [i ].usename );
791
789
792
790
/* skip archive tables */
793
791
if (isArchiveName (tblinfo [i ].relname ))
792
+ {
793
+ if (tblinfo [i ].relname ) free (tblinfo [i ].relname );
794
794
continue ;
795
+ }
796
+ if (tblinfo [i ].relname ) free (tblinfo [i ].relname );
795
797
796
798
if ( tblinfo [i ].sequence )
797
799
continue ;
You can’t perform that action at this time.
0 commit comments