Update of /cvsroot/pywin32/pywin32/com/win32comext/internet/src
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23699/src
Modified Files:
Tag: py3k
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.2.2
retrieving revision 1.1.2.3
diff -C2 -d -r1.1.2.2 -r1.1.2.3
*** PyIInternetSecurityManager.cpp 2 Nov 2008 12:55:54 -0000 1.1.2.2
--- PyIInternetSecurityManager.cpp 10 Nov 2008 03:19:56 -0000 1.1.2.3
***************
*** 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);
|