quartz: Fix a typo.
Should fix Coverity CID-348 (dereference before NULL check).
This commit is contained in:
parent
2bb44198b6
commit
6ef74bc9c8
|
@ -338,7 +338,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);
|
||||
|
|
Loading…
Reference in New Issue