Commit ca10760d authored by Andrew Eikum's avatar Andrew Eikum Committed by Alexandre Julliard

mfplat: Allow NULL length pointer in IMFAttributes::GetAllocatedString.

parent d686663d
......@@ -2670,7 +2670,8 @@ HRESULT attributes_GetAllocatedString(struct attributes *attributes, REFGUID key
if (SUCCEEDED(hr))
{
*value = attrval.pwszVal;
*length = lstrlenW(*value);
if (length)
*length = lstrlenW(*value);
}
return hr;
......
......@@ -1638,6 +1638,11 @@ static void test_attributes(void)
ok(hr == S_OK, "Failed to get string length, hr %#lx.\n", hr);
ok(string_length == lstrlenW(stringW), "Unexpected length %u.\n", string_length);
hr = IMFAttributes_GetAllocatedString(attributes, &DUMMY_GUID1, &string, NULL);
ok(hr == S_OK, "Failed to get allocated string, hr %#lx.\n", hr);
ok(!lstrcmpW(string, stringW), "Unexpected string %s.\n", wine_dbgstr_w(string));
CoTaskMemFree(string);
string_length = 0xdeadbeef;
hr = IMFAttributes_GetAllocatedString(attributes, &DUMMY_GUID1, &string, &string_length);
ok(hr == S_OK, "Failed to get allocated string, hr %#lx.\n", hr);
......
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