Update of /cvsroot/pywin32/pywin32/com/win32comext/authorization/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21318/com/win32comext/authorization/src
Modified Files:
PyGSecurityInformation.cpp
Log Message:
PyWinObject_AsHANDLE losts its 3rd param - None is always OK (zero always
was, so the distinction is futile
Index: PyGSecurityInformation.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/authorization/src/PyGSecurityInformation.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** PyGSecurityInformation.cpp 17 Jan 2007 15:00:15 -0000 1.3
--- PyGSecurityInformation.cpp 3 Jun 2007 14:53:06 -0000 1.4
***************
*** 89,93 ****
&&PyArg_ParseTuple(result, "kOOOOO", &ObjectInfo.dwFlags, &obhInstance, &obServerName,
&obObjectName, &obPageTitle, &obObjectType)
! &&PyWinObject_AsHANDLE(obhInstance, (PHANDLE)&ObjectInfo.hInstance, TRUE)
&&PyWinObject_AsWCHAR(obServerName, &ObjectInfo.pszServerName, TRUE)
&&PyWinObject_AsWCHAR(obObjectName, &ObjectInfo.pszObjectName, FALSE)
--- 89,93 ----
&&PyArg_ParseTuple(result, "kOOOOO", &ObjectInfo.dwFlags, &obhInstance, &obServerName,
&obObjectName, &obPageTitle, &obObjectType)
! &&PyWinObject_AsHANDLE(obhInstance, (PHANDLE)&ObjectInfo.hInstance)
&&PyWinObject_AsWCHAR(obServerName, &ObjectInfo.pszServerName, TRUE)
&&PyWinObject_AsWCHAR(obObjectName, &ObjectInfo.pszObjectName, FALSE)
|