Fixed memory leak in test

This commit is contained in:
akallabeth 2020-05-18 08:10:42 +02:00
parent 1d21585fa4
commit 55b7fc50e0
1 changed files with 3 additions and 0 deletions

View File

@ -180,6 +180,8 @@ static int testSuccess(int port)
path = GetCombinedPath(exe, "Sample");
wpath = GetCombinedPath(wexe, "Sample");
free(exe);
exe = NULL;
if (!path || !wpath)
goto fail;
@ -226,6 +228,7 @@ static int testSuccess(int port)
fail:
free(exe);
free(wexe);
free(path);
free(wpath);
free(commandLine);