Commit 1bab386a authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi/tests: Correctly free usersid.

parent 19a5881b
......@@ -3022,7 +3022,7 @@ error:
DeleteFileA(msifile);
DeleteFileA("msitest\\maximus");
RemoveDirectoryA("msitest");
free(usersid);
LocalFree(usersid);
}
static void test_publish_product(void)
......@@ -3259,7 +3259,7 @@ error:
DeleteFileA(msifile);
DeleteFileA("msitest\\maximus");
RemoveDirectoryA("msitest");
free(usersid);
LocalFree(usersid);
}
static void test_publish_features(void)
......@@ -3384,7 +3384,7 @@ error:
DeleteFileA(msifile);
DeleteFileA("msitest\\maximus");
RemoveDirectoryA("msitest");
free(usersid);
LocalFree(usersid);
}
static LPSTR reg_get_val_str(HKEY hkey, LPCSTR name)
......
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