Update of /cvsroot/pypgsql/pypgsql
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6208
Modified Files:
libpqmodule.c
Log Message:
08APR2005 bga Un-did one of the fixes put in on 01MAR2005. It wasn't broke
until I 'fixed' it.
01MAR2005 bga Fixed most outstanding bug reports and patches.
Index: libpqmodule.c
===================================================================
RCS file: /cvsroot/pypgsql/pypgsql/libpqmodule.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** libpqmodule.c 1 Mar 2005 21:06:43 -0000 1.31
--- libpqmodule.c 9 Apr 2005 02:19:41 -0000 1.32
***************
*** 32,35 ****
--- 32,40 ----
| Date Ini Description |
| --------- --- ------------------------------------------------------- |
+ | 08APR2005 bga Un-did one of the fixes put in on 01MAR2005. It wasn't |
+ | broke until I 'fixed' it. |
+ | 01MAR2005 bga Fixed most outstanding bug reports and patches. |
+ | 09NOV2003 bga Fixed a buffer overrun error in libPQquoteBytea based |
+ | on a fix by James Matthew Farrow. [Bug #838317]. |
| 09NOV2003 bga Fixed a buffer overrun error in libPQquoteBytea based |
| on a fix by James Matthew Farrow. [Bug #838317]. |
***************
*** 382,386 ****
PyObject *result;
! slen = strlen(sin) + 1;
sout = (char *)PyMem_Malloc(slen);
if (sout == (char *)NULL)
--- 387,391 ----
PyObject *result;
! slen = strlen(sin);
sout = (char *)PyMem_Malloc(slen);
if (sout == (char *)NULL)
|