urlmon: Code clean up.

This commit is contained in:
Jacek Caban 2007-01-26 18:50:43 +01:00 committed by Alexandre Julliard
parent 76b821bdd7
commit 1ba20d3b8b
1 changed files with 3 additions and 4 deletions

View File

@ -339,7 +339,7 @@ static ULONG WINAPI URLMonikerImpl_AddRef(IMoniker* iface)
URLMonikerImpl *This = (URLMonikerImpl *)iface; URLMonikerImpl *This = (URLMonikerImpl *)iface;
ULONG refCount = InterlockedIncrement(&This->ref); ULONG refCount = InterlockedIncrement(&This->ref);
TRACE("(%p)->(ref before=%u)\n",This, refCount - 1); TRACE("(%p) ref=%u\n",This, refCount);
return refCount; return refCount;
} }
@ -352,7 +352,7 @@ static ULONG WINAPI URLMonikerImpl_Release(IMoniker* iface)
URLMonikerImpl *This = (URLMonikerImpl *)iface; URLMonikerImpl *This = (URLMonikerImpl *)iface;
ULONG refCount = InterlockedDecrement(&This->ref); ULONG refCount = InterlockedDecrement(&This->ref);
TRACE("(%p)->(ref before=%u)\n",This, refCount + 1); TRACE("(%p) ref=%u\n",This, refCount);
/* destroy the object if there's no more reference on it */ /* destroy the object if there's no more reference on it */
if (!refCount) { if (!refCount) {
@ -1167,7 +1167,6 @@ HRESULT WINAPI CreateURLMoniker(IMoniker *pmkContext, LPCWSTR szURL, IMoniker **
{ {
URLMonikerImpl *obj; URLMonikerImpl *obj;
HRESULT hres; HRESULT hres;
IID iid = IID_IMoniker;
LPOLESTR lefturl = NULL; LPOLESTR lefturl = NULL;
TRACE("(%p, %s, %p)\n", pmkContext, debugstr_w(szURL), ppmk); TRACE("(%p, %s, %p)\n", pmkContext, debugstr_w(szURL), ppmk);
@ -1189,7 +1188,7 @@ HRESULT WINAPI CreateURLMoniker(IMoniker *pmkContext, LPCWSTR szURL, IMoniker **
hres = URLMonikerImpl_Construct(obj, lefturl, szURL); hres = URLMonikerImpl_Construct(obj, lefturl, szURL);
CoTaskMemFree(lefturl); CoTaskMemFree(lefturl);
if(SUCCEEDED(hres)) if(SUCCEEDED(hres))
hres = URLMonikerImpl_QueryInterface((IMoniker*)obj, &iid, (void**)ppmk); hres = URLMonikerImpl_QueryInterface((IMoniker*)obj, &IID_IMoniker, (void**)ppmk);
else else
HeapFree(GetProcessHeap(), 0, obj); HeapFree(GetProcessHeap(), 0, obj);
return hres; return hres;