aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2003-06-22 11:00:48 +0000
committerMichael Meskes <meskes@postgresql.org>2003-06-22 11:00:48 +0000
commit36fe7577f8218638cf7b14bc419554030406c48c (patch)
treed14be3ed936bd829023bd515f1bc79720707a5b1 /src
parent14847af48de4daad47db6faf1b8ec76676cbdf46 (diff)
downloadpostgresql-36fe7577f8218638cf7b14bc419554030406c48c.tar.gz
postgresql-36fe7577f8218638cf7b14bc419554030406c48c.zip
Added missing terminating '\0' char for data put into char *.
Diffstat (limited to 'src')
-rw-r--r--src/interfaces/ecpg/ChangeLog4
-rw-r--r--src/interfaces/ecpg/ecpglib/data.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/ChangeLog b/src/interfaces/ecpg/ChangeLog
index 8c1f9817e6b..a8daf97af74 100644
--- a/src/interfaces/ecpg/ChangeLog
+++ b/src/interfaces/ecpg/ChangeLog
@@ -1510,6 +1510,10 @@ Fri Jun 20 15:34:29 CEST 2003
- For Informix compatibility we have to accept a "free <cursor>".
- Synced scan.l and pgc.l.
+
+Sun Jun 22 11:20:29 CEST 2003
+
+ - Fixed missing '\0' in output char pointer.
- Set ecpg version to 3.0.0
- Set ecpg library to 4.0.0
- Set pgtypes library to 1.0.0
diff --git a/src/interfaces/ecpg/ecpglib/data.c b/src/interfaces/ecpg/ecpglib/data.c
index 97c0172f914..0930380829f 100644
--- a/src/interfaces/ecpg/ecpglib/data.c
+++ b/src/interfaces/ecpg/ecpglib/data.c
@@ -1,4 +1,4 @@
-/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/ecpglib/data.c,v 1.6 2003/06/19 09:52:11 meskes Exp $ */
+/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/ecpglib/data.c,v 1.7 2003/06/22 11:00:48 meskes Exp $ */
#define POSTGRES_ECPG_INTERNAL
#include "postgres_fe.h"
@@ -302,7 +302,7 @@ ECPGget_data(const PGresult *results, int act_tuple, int act_field, int lineno,
{
if (varcharsize == 0)
{
- strncpy((char *) ((long) var + offset * act_tuple), pval, strlen(pval));
+ strncpy((char *) ((long) var + offset * act_tuple), pval, strlen(pval)+1);
}
else
{