dswave: Finish the cleanup of create_dswave().
This commit is contained in:
parent
7370bed714
commit
e444c31f9e
|
@ -425,11 +425,11 @@ static const IPersistStreamVtbl persiststream_vtbl = {
|
|||
/* for ClassFactory */
|
||||
HRESULT WINAPI create_dswave(REFIID lpcGUID, void **ppobj)
|
||||
{
|
||||
IDirectMusicWaveImpl* obj;
|
||||
IDirectMusicWaveImpl *obj;
|
||||
HRESULT hr;
|
||||
|
||||
obj = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirectMusicWaveImpl));
|
||||
if (NULL == obj) {
|
||||
obj = HeapAlloc(GetProcessHeap(), 0, sizeof(IDirectMusicWaveImpl));
|
||||
if (!obj) {
|
||||
*ppobj = NULL;
|
||||
return E_OUTOFMEMORY;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue