dbghelp: Avoid dead assignment (scan-build).

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alex Henrie 2019-09-15 23:40:12 -06:00 committed by Alexandre Julliard
parent 5644a10e9d
commit ae6e401754

View file

@ -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;