Commit 1d52cfc4 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

oledb32/tests: Fix string leaks (Valgrind).

parent 5825ad56
......@@ -3786,6 +3786,7 @@ static void test_converttonumeric(void)
todo_wine ok(dst_status == DBSTATUS_S_OK, "got %08x\n", dst_status);
todo_wine ok(dst_len == sizeof(dst), "got %ld\n", dst_len);
todo_wine test_numeric_val(&dst, &result5);
SysFreeString(bstr);
bstr = SysAllocString(largeW);
dst_status = 0;
......@@ -3798,6 +3799,7 @@ static void test_converttonumeric(void)
todo_wine ok(dst_status == DBSTATUS_S_OK, "got %08x\n", dst_status);
todo_wine ok(dst_len == sizeof(dst), "got %ld\n", dst_len);
todo_wine test_numeric_val(&dst, &result6);
SysFreeString(bstr);
}
START_TEST(convert)
......
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