[PATCH 1/2] regedit: Remove two 'continue' statements from the end of two 'for' loops

Hugh McMaster hugh.mcmaster at outlook.com
Wed Aug 31 04:25:54 CDT 2016


Signed-off-by: Hugh McMaster <hugh.mcmaster at outlook.com>
---
 programs/regedit/regproc.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/programs/regedit/regproc.c b/programs/regedit/regproc.c
index fa4f781..648bf67 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 */
         }
     }
 
-- 
2.7.4




More information about the wine-patches mailing list