[ATL] Remove an assert that doesn't exist in the native ATL

This fixes an ATL assert in shell32_winetest:assoc and shell32_winetest:shfldr_special
This commit is contained in:
Timo Kreuzer 2022-12-13 10:36:02 +02:00
parent d0c1df7882
commit 902cdbc63a

View file

@ -1516,7 +1516,7 @@ inline HRESULT __stdcall AtlInternalQueryInterface(void *pThis, const _ATL_INTMA
ATLASSERT(pThis != NULL && pEntries != NULL);
if (pThis == NULL || pEntries == NULL)
return E_INVALIDARG;
ATLASSERT(ppvObject != NULL);
if (ppvObject == NULL)
return E_POINTER;