Alex Henrie : dbghelp: Avoid dead assignment (scan-build).

Alexandre Julliard julliard at winehq.org
Mon Sep 16 16:33:43 CDT 2019


Module: wine
Branch: master
Commit: ae6e4017548fc30bf5220bebc674230dc4ccfe06
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=ae6e4017548fc30bf5220bebc674230dc4ccfe06

Author: Alex Henrie <alexhenrie24 at gmail.com>
Date:   Sun Sep 15 23:40:12 2019 -0600

dbghelp: Avoid dead assignment (scan-build).

Signed-off-by: Alex Henrie <alexhenrie24 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/dbghelp/symbol.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dlls/dbghelp/symbol.c b/dlls/dbghelp/symbol.c
index 3689500fa0..69d8b38b71 100644
--- a/dlls/dbghelp/symbol.c
+++ b/dlls/dbghelp/symbol.c
@@ -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;




More information about the wine-cvs mailing list