Commit bf3b3312 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

windowscodecs/tests: Fix a leak in tests (Valgrind).

parent 2e9611bb
......@@ -1750,6 +1750,7 @@ static void test_metadata_gif(void)
hr = IWICMetadataQueryReader_GetMetadataByName(queryreader, queryW, &value);
ok(hr == S_OK, "GetMetadataByName(%s) error %#x\n", wine_dbgstr_w(queryW), hr);
ok(value.vt == VT_UNKNOWN, "expected VT_UNKNOWN, got %#x\n", value.vt);
PropVariantClear(&value);
IWICMetadataQueryReader_Release(queryreader);
}
......
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