Commit ba180b86 authored by Andrew Nguyen's avatar Andrew Nguyen Committed by Alexandre Julliard

msi/tests: Free the user SID string buffer with the correct deallocator in the source tests.

parent 3b79a7b4
...@@ -1001,7 +1001,7 @@ static void test_MsiSourceListAddSourceEx(void) ...@@ -1001,7 +1001,7 @@ static void test_MsiSourceListAddSourceEx(void)
RegCloseKey(url); RegCloseKey(url);
RegCloseKey(prodkey); RegCloseKey(prodkey);
HeapFree(GetProcessHeap(), 0, usersid); LocalFree(usersid);
} }
static void test_MsiSourceListEnumSources(void) static void test_MsiSourceListEnumSources(void)
......
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