qcap: Fix a typo.

This commit is contained in:
Andrew Talbot 2007-01-20 20:01:26 +00:00 committed by Alexandre Julliard
parent e907b06b87
commit 909b6c0dc0

View file

@ -132,7 +132,7 @@ HRESULT WINAPI IPinImpl_QueryId(IPin * iface, LPWSTR * Id)
TRACE("(%p/%p)->(%p)\n", This, iface, Id);
*Id = CoTaskMemAlloc((strlenW(This->pinInfo.achName) + 1) * sizeof(WCHAR));
if (!Id)
if (!*Id)
return E_OUTOFMEMORY;
strcpyW(*Id, This->pinInfo.achName);