Commit 25aa60b3 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

devenum: COM cleanup for IMoniker (MediaCatMoniker).

parent 201b72e8
...@@ -72,7 +72,7 @@ typedef struct ...@@ -72,7 +72,7 @@ typedef struct
typedef struct typedef struct
{ {
const IMonikerVtbl *lpVtbl; IMoniker IMoniker_iface;
LONG ref; LONG ref;
HKEY hkey; HKEY hkey;
} MediaCatMoniker; } MediaCatMoniker;
......
...@@ -136,10 +136,10 @@ static HRESULT WINAPI DEVENUM_IParseDisplayName_ParseDisplayName( ...@@ -136,10 +136,10 @@ static HRESULT WINAPI DEVENUM_IParseDisplayName_ParseDisplayName(
strcatW(wszRegKeyName, pszBetween); strcatW(wszRegKeyName, pszBetween);
if (RegCreateKeyW(hbasekey, wszRegKeyName, &pMoniker->hkey) == ERROR_SUCCESS) if (RegCreateKeyW(hbasekey, wszRegKeyName, &pMoniker->hkey) == ERROR_SUCCESS)
*ppmkOut = (LPMONIKER)pMoniker; *ppmkOut = &pMoniker->IMoniker_iface;
else else
{ {
IMoniker_Release((LPMONIKER)pMoniker); IMoniker_Release(&pMoniker->IMoniker_iface);
res = MK_E_NOOBJECT; res = MK_E_NOOBJECT;
} }
} }
......
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