Update of /cvsroot/pywin32/pywin32/win32/src/win32wnet
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21318/win32/src/win32wnet
Modified Files:
win32wnet.cpp
Log Message:
PyWinObject_AsHANDLE losts its 3rd param - None is always OK (zero always
was, so the distinction is futile
Index: win32wnet.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/src/win32wnet/win32wnet.cpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** win32wnet.cpp 10 Jul 2006 12:45:44 -0000 1.12
--- win32wnet.cpp 3 Jun 2007 14:53:07 -0000 1.13
***************
*** 289,293 ****
return NULL;
! if (!PyWinObject_AsHANDLE(Eob, &hEnum, FALSE)) // shouldn't fail unless out of memory?
return NULL;
--- 289,293 ----
return NULL;
! if (!PyWinObject_AsHANDLE(Eob, &hEnum)) // shouldn't fail unless out of memory?
return NULL;
|