kernel32/tests: Free memory after use.

This commit is contained in:
Paul Vriens 2008-10-20 22:15:49 +02:00 committed by Alexandre Julliard
parent 53f94c07f8
commit 5b83196484
1 changed files with 1 additions and 0 deletions

View File

@ -1644,6 +1644,7 @@ static void test_async_file_errors(void)
}
ok(completion_count == 0, "completion routine should only be called when ReadFileEx succeeds (this rule was violated %d times)\n", completion_count);
/*printf("Error = %ld\n", GetLastError());*/
HeapFree(GetProcessHeap(), 0, lpBuffer);
}
static void test_read_write(void)