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:
parent
5644a10e9d
commit
ae6e401754
|
@ -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;
|
if (!(next = re_match_one(string_end, re_beg, _case))) return FALSE;
|
||||||
string_end = next;
|
string_end = next;
|
||||||
}
|
}
|
||||||
re_beg = re_end;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (*re_end || *string_end) return FALSE;
|
if (*re_end || *string_end) return FALSE;
|
||||||
|
|
Loading…
Reference in New Issue