Commit 194851e5 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

qcap/tests: Avoid an unneeded lstrlenW() call.

Note that achName is an array field and thus cannot be NULL. Signed-off-by: 's avatarFrancois Gouget <fgouget@free.fr> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 92d31164
......@@ -2078,7 +2078,7 @@ static void test_smart_tee_filter(void)
if (FAILED(hr))
goto end;
ok(lstrlenW(filterInfo.achName) == 0,
ok(!*filterInfo.achName,
"filter's name is meant to be empty but it's %s\n", wine_dbgstr_w(filterInfo.achName));
hr = IBaseFilter_EnumPins(smartTeeFilter, &enumPins);
......
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