sechost: Free the right variable (Coverity).

Signed-off-by: Sven Baars <sbaars@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Sven Baars 2020-08-02 19:20:24 +02:00 committed by Alexandre Julliard
parent 8baf70a2d0
commit 3dbb87a3d0
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}