shlwapi: Fix memory leak in test.
This commit is contained in:
parent
69805b1245
commit
6dd046a61d
|
@ -483,6 +483,7 @@ static void test_StrDupA(void)
|
|||
*/
|
||||
lpszStr = StrDupA(NULL);
|
||||
ok(lpszStr == NULL || *lpszStr == '\0', "NULL string returned %p\n", lpszStr);
|
||||
LocalFree((HLOCAL)lpszStr);
|
||||
}
|
||||
|
||||
static void test_StrFormatByteSize64A(void)
|
||||
|
|
Loading…
Reference in New Issue