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

Signed-off-by: Hugh McMaster <hugh.mcmaster@outlook.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hugh McMaster 2016-08-31 09:25:54 +00:00 committed by Alexandre Julliard
parent 64a8aa520a
commit b4d40846dd
1 changed files with 0 additions and 2 deletions

View File

@ -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 */
}
}