[pywin32-checkins] pywin32/com/win32com/src PyRecord.cpp, 1.11.4.4, 1.11.4.5
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2009-01-08 03:44:26
|
Update of /cvsroot/pywin32/pywin32/com/win32com/src In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3895/com/win32com/src Modified Files: Tag: py3k PyRecord.cpp Log Message: merge vc6 compiler fix from trunk Index: PyRecord.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/src/PyRecord.cpp,v retrieving revision 1.11.4.4 retrieving revision 1.11.4.5 diff -C2 -d -r1.11.4.4 -r1.11.4.5 *** PyRecord.cpp 19 Dec 2008 02:33:56 -0000 1.11.4.4 --- PyRecord.cpp 8 Jan 2009 03:44:15 -0000 1.11.4.5 *************** *** 465,468 **** --- 465,469 ---- goto done; // must exit on error via loop_error from here... + PyObject *sub_object = NULL; if (i > 0){ PyWinCoreString_Concat(&obrepr, comma); *************** *** 476,480 **** if (!obrepr) goto loop_error; ! PyObject *sub_object = PyRecord::getattro(self, obattrname); if (!sub_object) goto loop_error; --- 477,481 ---- if (!obrepr) goto loop_error; ! sub_object = PyRecord::getattro(self, obattrname); if (!sub_object) goto loop_error; |