[pywin32-checkins] pywin32/win32/src odbc.cpp,1.7,1.8
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-10-18 16:52:26
|
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; |