Skip empty lines.
(cherry picked from commit 74f2500244bd127ecc0964fb4d46b16e96bdee94)
This commit is contained in:
parent
74351b1caf
commit
298e139580
|
@ -53,6 +53,9 @@ Key_Value::parseLine (string str) {
|
|||
string trimmedstr;
|
||||
|
||||
trimmedstr = trim (str);
|
||||
if (trimmedstr == "") {
|
||||
return;
|
||||
}
|
||||
|
||||
/* Check if the string has " */
|
||||
pos = trimmedstr.find ("\"");
|
||||
|
|
Loading…
Reference in New Issue