Hugh McMaster : regedit: Remove two 'continue' statements from the end of two 'while' loops.

Alexandre Julliard julliard at winehq.org
Thu Sep 1 09:55:28 CDT 2016


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

Author: Hugh McMaster <hugh.mcmaster at outlook.com>
Date:   Wed Aug 31 09:25:54 2016 +0000

regedit: Remove two 'continue' statements from the end of two 'while' loops.

Signed-off-by: Hugh McMaster <hugh.mcmaster at outlook.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 programs/regedit/regproc.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/programs/regedit/regproc.c b/programs/regedit/regproc.c
index e3e26c0..c33e28d 100644
--- a/programs/regedit/regproc.c
+++ b/programs/regedit/regproc.c
@@ -741,7 +741,6 @@ static void processRegLinesA(FILE *in, char* first_chars)
             HeapFree(GetProcessHeap(), 0, lineW);
             line = s_eol + 1;
             s_eol = 0;
-            continue; /* That is the full virtual line */
         }
     }
     processRegEntry(NULL, FALSE);
@@ -859,7 +858,6 @@ static void processRegLinesW(FILE *in)
             processRegEntry(line, TRUE);
             line = s_eol + 1;
             s_eol = 0;
-            continue; /* That is the full virtual line */
         }
     }
 




More information about the wine-cvs mailing list