summaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/lib/misc.c
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2001-12-23 12:17:41 +0000
committerMichael Meskes <meskes@postgresql.org>2001-12-23 12:17:41 +0000
commit988fdce5d1dcb1d5b7381f378079e76127b30882 (patch)
treea2632c4dcab7c2fad7a960d384ef79da6f43ef8d /src/interfaces/ecpg/lib/misc.c
parentaed0c29f7e4626032669ebc3150e5121f36a9b4d (diff)
- Removed space_or_nl and line_end from pgc.l.
- Fixed several bugs concerning arrays of structs including a memory allocation bug.
Diffstat (limited to 'src/interfaces/ecpg/lib/misc.c')
-rw-r--r--src/interfaces/ecpg/lib/misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/lib/misc.c b/src/interfaces/ecpg/lib/misc.c
index 1a74cf46d30..a3dd727cbd6 100644
--- a/src/interfaces/ecpg/lib/misc.c
+++ b/src/interfaces/ecpg/lib/misc.c
@@ -1,4 +1,4 @@
-/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/misc.c,v 1.10 2001/11/14 11:11:49 meskes Exp $ */
+/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/misc.c,v 1.11 2001/12/23 12:17:41 meskes Exp $ */
#include "postgres_fe.h"
@@ -137,6 +137,6 @@ ECPGlog(const char *format,...)
vfprintf(debugstream, f, ap);
va_end(ap);
- free(f);
+ ECPGfree(f);
}
}