mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
COMMON: Strip whitespace before checking if an INI line is a comment.
Fixes some versions of Reah failing to parse subtitle data.
This commit is contained in:
parent
323ad92ad6
commit
e219e4e04e
@ -105,6 +105,8 @@ bool INIFile::loadFromStream(SeekableReadStream &stream) {
|
||||
// Read a line
|
||||
String line = stream.readLine();
|
||||
|
||||
line.trim();
|
||||
|
||||
if (line.size() == 0) {
|
||||
// Do nothing
|
||||
} else if (line[0] == '#' || line[0] == ';' || line.hasPrefix("//")) {
|
||||
@ -156,30 +158,21 @@ bool INIFile::loadFromStream(SeekableReadStream &stream) {
|
||||
} else {
|
||||
// This line should be a line with a 'key=value' pair, or an empty one.
|
||||
|
||||
// Skip leading whitespaces
|
||||
const char *t = line.c_str();
|
||||
while (isSpace(*t))
|
||||
t++;
|
||||
|
||||
// Skip empty lines / lines with only whitespace
|
||||
if (*t == 0)
|
||||
continue;
|
||||
|
||||
// If no section has been set, this config file is invalid!
|
||||
if (section.name.empty()) {
|
||||
error("INIFile::loadFromStream: Key/value pair found outside a section in line %d", lineno);
|
||||
}
|
||||
|
||||
// Split string at '=' into 'key' and 'value'. First, find the "=" delimeter.
|
||||
const char *p = strchr(t, '=');
|
||||
const char *p = strchr(line.c_str(), '=');
|
||||
if (!p) {
|
||||
if (!_suppressValuelessLineWarning)
|
||||
warning("Config file buggy: Junk found in line %d: '%s'", lineno, t);
|
||||
kv.key = String(t);
|
||||
warning("Config file buggy: Junk found in line %d: '%s'", lineno, line.c_str());
|
||||
kv.key = line;
|
||||
kv.value.clear();
|
||||
} else {
|
||||
// Extract the key/value pair
|
||||
kv.key = String(t, p);
|
||||
kv.key = String(line.c_str(), p);
|
||||
kv.value = String(p + 1);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user