commit | ee0344a4a2e3347ddf32cba7d12260b0497a1632 | [log] [tgz] |
---|---|---|
author | Francois Gouget <fgouget@free.fr> | Wed Dec 22 15:13:20 2004 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Wed Dec 22 15:13:20 2004 +0000 |
tree | 1e8a9e74843c0420187610ba6dd7686132ec8f01 | |
parent | 9db0e072b18e4d371174016bc92c15ebbc8c72c5 [diff] [blame] |
Remove unneeded NULL casts.
diff --git a/dlls/dmstyle/style.c b/dlls/dmstyle/style.c index 2941a63..49b8080 100644 --- a/dlls/dmstyle/style.c +++ b/dlls/dmstyle/style.c
@@ -1041,7 +1041,7 @@ obj = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirectMusicStyle8Impl)); if (NULL == obj) { - *ppobj = (LPVOID) NULL; + *ppobj = NULL; return E_OUTOFMEMORY; } obj->UnknownVtbl = &DirectMusicStyle8_Unknown_Vtbl;