From 8f49ea21d465f9a40f4a0c515f2196c6a16431f9 Mon Sep 17 00:00:00 2001 From: Lionel Debroux Date: Sat, 20 Oct 2007 21:38:35 +0200 Subject: [PATCH] ntdll/tests: Fix memory leaks (found by Smatch) and fix a message. --- dlls/ntdll/tests/rtlstr.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dlls/ntdll/tests/rtlstr.c b/dlls/ntdll/tests/rtlstr.c index e40bd53e03c..a99011db7b1 100644 --- a/dlls/ntdll/tests/rtlstr.c +++ b/dlls/ntdll/tests/rtlstr.c @@ -289,6 +289,8 @@ static void test_RtlInitUnicodeStringEx(void) ok(uni.Buffer == NULL, "pRtlInitUnicodeString(&uni, 0) sets Buffer to %p, expected %p\n", uni.Buffer, NULL); + + free(teststring2); } @@ -1709,7 +1711,8 @@ static void test_RtlIsTextUnicode(void) flags = IS_TEXT_UNICODE_REVERSE_MASK; ok(!pRtlIsTextUnicode(be_unicode, sizeof(unicode) + 2, &flags), "Reverse endian should be Unicode\n"); - todo_wine ok(flags == 0xc0, "Expected flags 0x70, obtained %x\n", flags); + todo_wine ok(flags == 0xc0, "Expected flags 0xc0, obtained %x\n", flags); + HeapFree(GetProcessHeap(), 0, be_unicode); } static const WCHAR szGuid[] = { '{','0','1','0','2','0','3','0','4','-',