Commit ae6e4017 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

dbghelp: Avoid dead assignment (scan-build).

parent 5644a10e
......@@ -1967,7 +1967,6 @@ static BOOL re_match_multi(const WCHAR** pstring, const WCHAR** pre, BOOL _case)
if (!(next = re_match_one(string_end, re_beg, _case))) return FALSE;
string_end = next;
}
re_beg = re_end;
}
if (*re_end || *string_end) return FALSE;
......
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