ntdll: Fix leak in test_symlinks.

This commit is contained in:
Dan Kegel 2010-02-13 08:30:29 -08:00 committed by Alexandre Julliard
parent ccab177159
commit 1aa3308fa5
1 changed files with 2 additions and 0 deletions

View File

@ -748,6 +748,8 @@ static void test_symlinks(void)
status = pNtDeleteKey( root );
ok( status == STATUS_SUCCESS, "NtDeleteKey failed: 0x%08x\n", status );
pNtClose( root );
pRtlFreeHeap(GetProcessHeap(), 0, target);
}
START_TEST(reg)