mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-24 14:56:49 +03:00
Fix bug where config file values with a colon were interpreted as entries (3)
This commit is contained in:
parent
2b6cf6296c
commit
2c3bd46854
BIN
qloader2.bin
BIN
qloader2.bin
Binary file not shown.
@ -75,8 +75,10 @@ cont:
|
||||
while (*p != ':' && *p)
|
||||
p++;
|
||||
|
||||
if (*p && *(p - 1) != '\n')
|
||||
if (*p && *(p - 1) != '\n') {
|
||||
p++;
|
||||
goto cont;
|
||||
}
|
||||
|
||||
*p = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user