Commit 3dbb87a3 authored by Sven Baars's avatar Sven Baars Committed by Alexandre Julliard

sechost: Free the right variable (Coverity).

parent 8baf70a2
......@@ -1031,7 +1031,7 @@ BOOL WINAPI DECLSPEC_HOTPATCH StartServiceA( SC_HANDLE service, DWORD argc, cons
for (i = 0; i < argc; i++)
heap_free( argvW[i] );
heap_free( argv );
heap_free( argvW );
return r;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment