Update of /cvsroot/pywin32/pywin32/com/win32comext/internet/src
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23500/src
Modified Files:
PyIInternetSecurityManager.cpp
Log Message:
Correct pointer indirection fetching a GUID in IInternetSecurityManager
Index: PyIInternetSecurityManager.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/internet/src/PyIInternetSecurityManager.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** PyIInternetSecurityManager.cpp 2 Nov 2008 12:50:01 -0000 1.1
--- PyIInternetSecurityManager.cpp 10 Nov 2008 03:19:21 -0000 1.2
***************
*** 363,367 ****
Py_INCREF(Py_None);
} else if (cbContext==sizeof(GUID))
! obContext = PyWinObject_FromIID(*((IID *)*pContext));
else {
PyCom_LoggerWarning(NULL, "PyGInternetSecurityManager::ProcessUrlAction has %d bytes for context - what is that?", cbContext);
--- 363,367 ----
Py_INCREF(Py_None);
} else if (cbContext==sizeof(GUID))
! obContext = PyWinObject_FromIID(*((IID *)pContext));
else {
PyCom_LoggerWarning(NULL, "PyGInternetSecurityManager::ProcessUrlAction has %d bytes for context - what is that?", cbContext);
|