diff --git a/sdk/lib/atl/atlbase.h b/sdk/lib/atl/atlbase.h index 5d6c874bb6e..d327aadf4d8 100644 --- a/sdk/lib/atl/atlbase.h +++ b/sdk/lib/atl/atlbase.h @@ -1545,10 +1545,11 @@ inline HRESULT __stdcall AtlInternalQueryInterface(void *pThis, const _ATL_INTMA else { hResult = pEntries[i].pFunc(pThis, iid, ppvObject, 0); - if (hResult == S_OK || (FAILED(hResult) && pEntries[i].piid != NULL)) + if (hResult == S_OK) return hResult; + if (FAILED(hResult) && pEntries[i].piid != NULL) + break; } - break; } i++; }