Update of /cvsroot/pywin32/pywin32/win32/src
In directory sc8-pr-cvs1:/tmp/cvs-serv18755
Modified Files:
odbc.cpp
Log Message:
Fix [ 754796 ] Reference count bug in ODBC, via
[ 801864 ] fix for sf bug # 754796,
from Roger Upole.
Index: odbc.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/src/odbc.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** odbc.cpp 28 Jul 2002 10:30:44 -0000 1.7
--- odbc.cpp 18 Oct 2003 06:07:16 -0000 1.8
***************
*** 1349,1352 ****
--- 1349,1353 ----
Error:
Py_DECREF(cur->description);
+ cur->description = NULL;
rv = NULL;
goto Cleanup;
|