[pywin32-checkins] pywin32/win32/src win32evtlog.i, 1.6.2.1, 1.6.2.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2008-10-01 03:56:02
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv10469 Modified Files: Tag: py3k win32evtlog.i Log Message: Fix stale exception in ReportEvent Index: win32evtlog.i =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/win32evtlog.i,v retrieving revision 1.6.2.1 retrieving revision 1.6.2.2 diff -C2 -d -r1.6.2.1 -r1.6.2.2 *** win32evtlog.i 29 Aug 2008 04:59:26 -0000 1.6.2.1 --- win32evtlog.i 1 Oct 2008 03:55:51 -0000 1.6.2.2 *************** *** 250,254 **** return NULL; if (!PyWinObject_AsReadBuffer(obData, &pData, &dataSize, TRUE)) ! pData = NULL; if (!PyWinObject_AsWCHARArray(obStrings, &pStrings, &numStrings, TRUE)) return NULL; --- 250,254 ---- return NULL; if (!PyWinObject_AsReadBuffer(obData, &pData, &dataSize, TRUE)) ! return NULL; if (!PyWinObject_AsWCHARArray(obStrings, &pStrings, &numStrings, TRUE)) return NULL; |