Commit 1aa3308f authored by Dan Kegel's avatar Dan Kegel Committed by Alexandre Julliard

ntdll: Fix leak in test_symlinks.

parent ccab1771
...@@ -748,6 +748,8 @@ static void test_symlinks(void) ...@@ -748,6 +748,8 @@ static void test_symlinks(void)
status = pNtDeleteKey( root ); status = pNtDeleteKey( root );
ok( status == STATUS_SUCCESS, "NtDeleteKey failed: 0x%08x\n", status ); ok( status == STATUS_SUCCESS, "NtDeleteKey failed: 0x%08x\n", status );
pNtClose( root ); pNtClose( root );
pRtlFreeHeap(GetProcessHeap(), 0, target);
} }
START_TEST(reg) START_TEST(reg)
......
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