aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2007-09-21 10:59:27 +0000
committerMichael Meskes <meskes@postgresql.org>2007-09-21 10:59:27 +0000
commit3e77c8c6c60b398b0ae18fd9704752f79a2d7551 (patch)
treefd4805c622de610bfa515d8a968ad9cca2aea851
parent017daed0dd8bc158b97fe5c6ecb839a56905fc52 (diff)
downloadpostgresql-3e77c8c6c60b398b0ae18fd9704752f79a2d7551.tar.gz
postgresql-3e77c8c6c60b398b0ae18fd9704752f79a2d7551.zip
Removed superfluous ECPGfree() call.
-rw-r--r--src/interfaces/ecpg/ecpglib/execute.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/ecpglib/execute.c b/src/interfaces/ecpg/ecpglib/execute.c
index 4a9f82cc1ac..a1aad0b30a1 100644
--- a/src/interfaces/ecpg/ecpglib/execute.c
+++ b/src/interfaces/ecpg/ecpglib/execute.c
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/execute.c,v 1.68 2007/08/14 10:01:52 meskes Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/execute.c,v 1.69 2007/09/21 10:59:27 meskes Exp $ */
/*
* The aim is to get a simpler inteface to the database routines.
@@ -1492,7 +1492,6 @@ ECPGdo(const int lineno, const int compat, const int force_indicator, const char
{
setlocale(LC_NUMERIC, oldlocale);
ECPGfree(oldlocale);
- ECPGfree(prepname);
va_end(args);
return false;
}