[pywin32-checkins] pywin32/com/win32com/src dllmain.cpp,1.14,1.15
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2006-03-23 06:59:23
|
Update of /cvsroot/pywin32/pywin32/com/win32com/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28185 Modified Files: dllmain.cpp Log Message: Don't write a log entry for RPC_E_CHANGED_MODE CoInitializeEx failures Index: dllmain.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/src/dllmain.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** dllmain.cpp 14 Mar 2006 12:06:42 -0000 1.14 --- dllmain.cpp 23 Mar 2006 06:59:20 -0000 1.15 *************** *** 202,206 **** if ( FAILED(hr) ) { ! PyCom_LoggerException(NULL, "OLE initialization failed! (0x%08lx)", hr); return hr; } --- 202,207 ---- if ( FAILED(hr) ) { ! if (hr != RPC_E_CHANGED_MODE) ! PyCom_LoggerException(NULL, "CoInitializeEx failed (0x%08lx)", hr); return hr; } |