1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-30 21:42:05 +03:00

Cleanup Name usage.

This commit is contained in:
Bruce Momjian
1998-07-20 16:14:18 +00:00
parent 7193719b4f
commit 34797d4225
7 changed files with 48 additions and 69 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.32 1998/06/15 19:28:20 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.33 1998/07/20 16:14:13 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -309,8 +309,7 @@ ExecFreeResultType(CommonState *commonstate)
slot = commonstate->cs_ResultTupleSlot;
tupType = slot->ttc_tupleDescriptor;
/* ExecFreeTypeInfo(tupType); */
pfree(tupType);
ExecFreeTypeInfo(tupType);
}
#endif
@ -407,8 +406,7 @@ ExecFreeScanType(CommonScanState *csstate)
slot = csstate->css_ScanTupleSlot;
tupType = slot->ttc_tupleDescriptor;
/* ExecFreeTypeInfo(tupType); */
pfree(tupType);
ExecFreeTypeInfo(tupType);
}
#endif