[PATCH 1/3] advapi32/tests: Don't cast return value from HeapAlloc

André Hentschel nerv at dawncrow.de
Tue Jan 2 05:54:11 CST 2018


Signed-off-by: André Hentschel <nerv at dawncrow.de>
---
 dlls/advapi32/tests/eventlog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/advapi32/tests/eventlog.c b/dlls/advapi32/tests/eventlog.c
index 8c78dcf..e6b2de5 100644
--- a/dlls/advapi32/tests/eventlog.c
+++ b/dlls/advapi32/tests/eventlog.c
@@ -1157,7 +1157,7 @@ static void test_start_trace(void)
     LONG ret;
 
     buffersize = sizeof(EVENT_TRACE_PROPERTIES) + sizeof(sessionname) + sizeof(filepath);
-    properties = (EVENT_TRACE_PROPERTIES *) HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, buffersize);
+    properties = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, buffersize);
     properties->Wnode.BufferSize = buffersize;
     properties->Wnode.Flags = WNODE_FLAG_TRACED_GUID;
     properties->LogFileMode = EVENT_TRACE_FILE_MODE_NONE;
-- 
2.7.4





More information about the wine-devel mailing list