mirror of
https://github.com/reactos/reactos.git
synced 2025-08-01 23:53:07 +00:00
[IEFRAME]
- Fix IID comparison in ShellUIHelper2_QueryInterface. Patch by Víctor Martínez CORE-8158 #resolve svn path=/trunk/; revision=63197
This commit is contained in:
parent
2a247900b0
commit
0ef1e2610a
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue