mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 06:30:37 +00:00
dmusic: Don't crash on NULL in IDirectMusicObject::GetDescriptor.
This commit is contained in:
parent
fda99c0fcc
commit
fe0d2a2ba7
@ -181,7 +181,9 @@ static HRESULT WINAPI IDirectMusicCollectionImpl_IDirectMusicObject_GetDescripto
|
||||
|
||||
TRACE("(%p/%p)->(%p)\n", iface, This, pDesc);
|
||||
|
||||
/* I think we shouldn't return pointer here since then values can be changed; it'd be a mess */
|
||||
if (!pDesc)
|
||||
return E_POINTER;
|
||||
|
||||
memcpy (pDesc, This->pDesc, This->pDesc->dwSize);
|
||||
|
||||
return S_OK;
|
||||
|
Loading…
Reference in New Issue
Block a user