[pywin32-checkins] pywin32/com/win32com/src/extensions PyIBindCtx.cpp,1.2,1.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2004-04-09 00:13:57
|
Update of /cvsroot/pywin32/pywin32/com/win32com/src/extensions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14221 Modified Files: PyIBindCtx.cpp Log Message: Typo checking pointer! Picked up by Roger Upole Index: PyIBindCtx.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/src/extensions/PyIBindCtx.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PyIBindCtx.cpp 19 Nov 1999 04:03:23 -0000 1.2 --- PyIBindCtx.cpp 9 Apr 2004 00:00:38 -0000 1.3 *************** *** 28,32 **** return NULL; IBindCtx *pMy = GetI(self); ! if (pMy) return NULL; IRunningObjectTable *pROT; PY_INTERFACE_PRECALL; --- 28,32 ---- return NULL; IBindCtx *pMy = GetI(self); ! if (!pMy) return NULL; IRunningObjectTable *pROT; PY_INTERFACE_PRECALL; |