ntdll/tests: Free library after use.

This commit is contained in:
Paul Vriens 2008-05-19 14:00:10 +02:00 committed by Alexandre Julliard
parent 362f2ceeaf
commit 446243b1d9
1 changed files with 17 additions and 14 deletions

View File

@ -118,8 +118,9 @@ static BOOL init_function_ptrs(void)
{
hntdll = LoadLibraryA("ntdll.dll");
if (hntdll)
{
if (!hntdll)
return FALSE;
pNtCompleteConnectPort = (void *)GetProcAddress(hntdll, "NtCompleteConnectPort");
pNtAcceptConnectPort = (void *)GetProcAddress(hntdll, "NtAcceptConnectPort");
pNtReplyPort = (void *)GetProcAddress(hntdll, "NtReplyPort");
@ -131,13 +132,13 @@ static BOOL init_function_ptrs(void)
pNtConnectPort = (void *)GetProcAddress(hntdll, "NtConnectPort");
pRtlInitUnicodeString = (void *)GetProcAddress(hntdll, "RtlInitUnicodeString");
pNtWaitForSingleObject = (void *)GetProcAddress(hntdll, "NtWaitForSingleObject");
}
if (!pNtCompleteConnectPort || !pNtAcceptConnectPort ||
!pNtReplyWaitReceivePort || !pNtCreatePort || !pNtRequestWaitReplyPort ||
!pNtRequestPort || !pNtRegisterThreadTerminatePort ||
!pNtConnectPort || !pRtlInitUnicodeString)
{
FreeLibrary(hntdll);
return FALSE;
}
@ -309,4 +310,6 @@ START_TEST(port)
test_ports_server();
CloseHandle(thread);
FreeLibrary(hntdll);
}