Skip to content
Snippets Groups Projects
Commit 3dbb87a3 authored by Sven Baars's avatar Sven Baars Committed by Alexandre Julliard
Browse files

sechost: Free the right variable (Coverity).

parent 8baf70a2
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment