Commit 63823061 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

quartz: Handle NULL return from strchr() (Coverity).

parent 14efad5d
......@@ -179,8 +179,8 @@ static HRESULT process_pattern_string(LPCWSTR wszPatternString, IAsyncReader * p
if (!(wszPatternString = strchrW(wszPatternString, ',')))
hr = E_INVALIDARG;
wszPatternString++; /* skip ',' */
else
wszPatternString++; /* skip ',' */
}
if (hr == S_OK)
......
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