Get rid of extra "continue".

It's confusing, and it doesn't actually accomplish anything when applied
to *either* loop.

Signed-off-by: Peter Jones <pjones@redhat.com>
This commit is contained in:
Peter Jones 2013-04-30 09:46:22 -04:00
parent e172354b7e
commit 404e126344

View File

@ -375,10 +375,8 @@ try_boot_csv(EFI_FILE_HANDLE fh, CHAR16 *dirname, CHAR16 *filename)
if (*start == 0xfeff)
start++;
while (*start) {
while (*start == L'\r' || *start == L'\n') {
while (*start == L'\r' || *start == L'\n')
start++;
continue;
}
UINTN l = StrCSpn(start, L"\r\n");
if (l == 0) {
if (start[l] == L'\0')