Commit a44b653d authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Fix a handle leak in the record tests.

parent 6891b963
...@@ -604,6 +604,7 @@ static void test_fieldzero(void) ...@@ -604,6 +604,7 @@ static void test_fieldzero(void)
r = MsiRecordIsNull(rec, 0); r = MsiRecordIsNull(rec, 0);
ok(r == FALSE, "Expected FALSE, got %d\n", r); ok(r == FALSE, "Expected FALSE, got %d\n", r);
MsiCloseHandle(rec);
MsiCloseHandle(hdb); MsiCloseHandle(hdb);
DeleteFileA(msifile); DeleteFileA(msifile);
} }
......
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