[pywin32-bugs] [ pywin32-Bugs-828466 ] EnumClassesOfCategories fails if 2nd param is None
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: SourceForge.net <no...@so...> - 2004-04-22 04:06:57
|
Bugs item #828466, was opened at 2003-10-23 05:48 Message generated for change (Comment added) made by mhammond You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=551954&aid=828466&group_id=78018 Category: com Group: None >Status: Closed >Resolution: Fixed Priority: 5 Submitted By: Eugene Yakubovich (eyakubovich) Assigned to: Nobody/Anonymous (nobody) Summary: EnumClassesOfCategories fails if 2nd param is None Initial Comment: PyICatInformation.EnumClassesOfCategories fails with E_POINTER if the listIIdRequired parameter is None. Although not documented in MSDN, ICatInformation::EnumClassesOfCategories's rgcatidReq parameter MUST be NULL if cRequired parameter is -1. Looking at PyICatInformation.cpp:82 shows that this parameter is always initialized to a non-NULL value: 81: GUID iidTemp; 82: GUID *pIDsReqd = &iidTemp; ---------------------------------------------------------------------- >Comment By: Mark Hammond (mhammond) Date: 2004-04-22 14:06 Message: Logged In: YES user_id=14198 Fixed in rev 1.5 of PyICatInformation, so will be in the next build. Thanks. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=551954&aid=828466&group_id=78018 |