Commit 59ee884b authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

user32/tests: Fix a leak when creating test icons (Valgrind).

parent 4fdfa29e
...@@ -1192,6 +1192,8 @@ static void create_ico_file(const char *filename, const test_icon_entries_t *tes ...@@ -1192,6 +1192,8 @@ static void create_ico_file(const char *filename, const test_icon_entries_t *tes
ret = WriteFile(file, buf, icon_size, &bytes_written, NULL); ret = WriteFile(file, buf, icon_size, &bytes_written, NULL);
ok(ret && bytes_written == icon_size, "icon.ico created improperly.\n"); ok(ret && bytes_written == icon_size, "icon.ico created improperly.\n");
CloseHandle(file); CloseHandle(file);
HeapFree(GetProcessHeap(), 0, buf);
} }
static void test_LoadImage(void) static void test_LoadImage(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