Commit 8f49ea21 authored by Lionel Debroux's avatar Lionel Debroux Committed by Alexandre Julliard

ntdll/tests: Fix memory leaks (found by Smatch) and fix a message.

parent 1a8001af
......@@ -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','-',
......
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