Fix compiler warning.
This commit is contained in:
parent
769a4bb586
commit
4365bd2122
|
@ -129,7 +129,8 @@ HRESULT WINAPI StdProxy_Construct(REFIID riid,
|
|||
|
||||
/* I can't find any other way to detect stubless proxies than this hack */
|
||||
if (!IsEqualGUID(vtbl->header.piid, riid)) {
|
||||
stubless = *((const void **)vtbl)++;
|
||||
stubless = *(const void **)vtbl;
|
||||
vtbl = (CInterfaceProxyVtbl *)((const void **)vtbl + 1);
|
||||
TRACE("stubless=%p\n", stubless);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue