Commit 9e828995 authored by Victor Martinez Calvo's avatar Victor Martinez Calvo Committed by Alexandre Julliard

ieframe: Compare against the correct IID in ShellUIHelper.

parent d8467aee
......@@ -45,7 +45,7 @@ static HRESULT WINAPI ShellUIHelper2_QueryInterface(IShellUIHelper2 *iface, REFI
}else if(IsEqualGUID(&IID_IShellUIHelper, riid)) {
TRACE("(%p)->(IID_IShellUIHelper %p)\n", This, ppv);
*ppv = &This->IShellUIHelper2_iface;
}else if(IsEqualGUID(&IID_IShellUIHelper, riid)) {
}else if(IsEqualGUID(&IID_IShellUIHelper2, riid)) {
TRACE("(%p)->(IID_IShellUIHelper2 %p)\n", This, ppv);
*ppv = &This->IShellUIHelper2_iface;
}else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment