forked from xt-sys/exectos
Compare commits
1 Commits
370a635ee2
...
boot-frame
| Author | SHA1 | Date | |
|---|---|---|---|
| 534ad63ae8 |
3949
sdk/xtdk/xtfont.h
3949
sdk/xtdk/xtfont.h
File diff suppressed because it is too large
Load Diff
@@ -622,7 +622,7 @@ Configuration::ParseConfigFile(IN CONST PCHAR RawConfig,
|
||||
SectionName = InputData;
|
||||
|
||||
/* Find end of the section name */
|
||||
while(*InputData != ']' && *InputData != '\0' && *InputData != '\r' && *InputData != '\n')
|
||||
while(*InputData != ']' && *InputData != '\0' && *InputData != '\n')
|
||||
{
|
||||
/* Advance to the next character */
|
||||
InputData++;
|
||||
@@ -672,7 +672,7 @@ Configuration::ParseConfigFile(IN CONST PCHAR RawConfig,
|
||||
Key = InputData;
|
||||
|
||||
/* Find end of the key */
|
||||
while(*InputData != '=' && *InputData != '\0' && *InputData != '\r' && *InputData != '\n')
|
||||
while(*InputData != '=' && *InputData != '\0' && *InputData != '\n')
|
||||
{
|
||||
/* Advance to the next character */
|
||||
InputData++;
|
||||
@@ -700,7 +700,7 @@ Configuration::ParseConfigFile(IN CONST PCHAR RawConfig,
|
||||
Value = InputData;
|
||||
|
||||
/* Find end of the value */
|
||||
while(*InputData != '\0' && *InputData != '\r' && *InputData != '\n')
|
||||
while(*InputData != '\0' && *InputData != '\n')
|
||||
{
|
||||
/* Advance to the next character */
|
||||
InputData++;
|
||||
|
||||
3960
xtoskrnl/hl/fbdevfont.cc
Normal file
3960
xtoskrnl/hl/fbdevfont.cc
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user