mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-08-13 23:28:38 +00:00
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:
parent
e172354b7e
commit
404e126344
@ -375,10 +375,8 @@ try_boot_csv(EFI_FILE_HANDLE fh, CHAR16 *dirname, CHAR16 *filename)
|
|||||||
if (*start == 0xfeff)
|
if (*start == 0xfeff)
|
||||||
start++;
|
start++;
|
||||||
while (*start) {
|
while (*start) {
|
||||||
while (*start == L'\r' || *start == L'\n') {
|
while (*start == L'\r' || *start == L'\n')
|
||||||
start++;
|
start++;
|
||||||
continue;
|
|
||||||
}
|
|
||||||
UINTN l = StrCSpn(start, L"\r\n");
|
UINTN l = StrCSpn(start, L"\r\n");
|
||||||
if (l == 0) {
|
if (l == 0) {
|
||||||
if (start[l] == L'\0')
|
if (start[l] == L'\0')
|
||||||
|
Loading…
Reference in New Issue
Block a user