Remove unneeded NULL cast.

oldstable
Francois Gouget 2005-01-26 20:40:49 +00:00 committed by Alexandre Julliard
parent 652ec646ad
commit 7a29b06555
1 changed files with 1 additions and 1 deletions

View File

@ -684,7 +684,7 @@ HRESULT WINAPI DMUSIC_CreateDirectMusicScriptImpl (LPCGUID lpcGUID, LPVOID* ppob
obj = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirectMusicScriptImpl));
if (NULL == obj) {
*ppobj = (LPVOID) NULL;
*ppobj = NULL;
return E_OUTOFMEMORY;
}
obj->UnknownVtbl = &DirectMusicScript_Unknown_Vtbl;