mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 21:45:41 +00:00
[PSTOREC] Sync with Wine Staging 2.2. CORE-12823
8d3af56 pstorec: Fix QueryInterface() of IPStore. svn path=/trunk/; revision=73972
This commit is contained in:
parent
f04ae39730
commit
808452e8b7
2 changed files with 4 additions and 4 deletions
|
@ -71,13 +71,13 @@ static HRESULT WINAPI PStore_fnQueryInterface(
|
||||||
{
|
{
|
||||||
PStore_impl *This = impl_from_IPStore(iface);
|
PStore_impl *This = impl_from_IPStore(iface);
|
||||||
|
|
||||||
TRACE("%p %s\n",This,debugstr_guid(riid));
|
TRACE("%p %s %p\n", This, debugstr_guid(riid), ppvObj);
|
||||||
|
|
||||||
*ppvObj = NULL;
|
*ppvObj = NULL;
|
||||||
|
|
||||||
if (IsEqualIID(riid, &IID_IUnknown))
|
if (IsEqualIID(riid, &IID_IPStore) || IsEqualIID(riid, &IID_IUnknown))
|
||||||
{
|
{
|
||||||
*ppvObj = This;
|
*ppvObj = &This->IPStore_iface;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (*ppvObj)
|
if (*ppvObj)
|
||||||
|
|
|
@ -152,7 +152,7 @@ reactos/dll/win32/pidgen # Synced to WineStaging-1.9.11
|
||||||
reactos/dll/win32/powrprof # Forked at Wine-1.0rc5
|
reactos/dll/win32/powrprof # Forked at Wine-1.0rc5
|
||||||
reactos/dll/win32/printui # Synced to WineStaging-1.9.11
|
reactos/dll/win32/printui # Synced to WineStaging-1.9.11
|
||||||
reactos/dll/win32/propsys # Synced to WineStaging-1.9.16
|
reactos/dll/win32/propsys # Synced to WineStaging-1.9.16
|
||||||
reactos/dll/win32/pstorec # Synced to WineStaging-1.9.16
|
reactos/dll/win32/pstorec # Synced to WineStaging-2.2
|
||||||
reactos/dll/win32/qmgr # Synced to WineStaging-1.9.23
|
reactos/dll/win32/qmgr # Synced to WineStaging-1.9.23
|
||||||
reactos/dll/win32/qmgrprxy # Synced to WineStaging-1.9.11
|
reactos/dll/win32/qmgrprxy # Synced to WineStaging-1.9.11
|
||||||
reactos/dll/win32/query # Synced to WineStaging-1.9.11
|
reactos/dll/win32/query # Synced to WineStaging-1.9.11
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue