Merge branch 'ent-13099-agente-windows-no-se-inicia-tras-update-server' into 'develop'

Skip empty lines.

See merge request 
This commit is contained in:
Juan Antonio Loarte 2024-04-02 13:48:04 +00:00
commit a61b1a57b2
1 changed files with 3 additions and 0 deletions
pandora_agents/win32

View File

@ -53,6 +53,9 @@ Key_Value::parseLine (string str) {
string trimmedstr; string trimmedstr;
trimmedstr = trim (str); trimmedstr = trim (str);
if (trimmedstr == "") {
return;
}
/* Check if the string has " */ /* Check if the string has " */
pos = trimmedstr.find ("\""); pos = trimmedstr.find ("\"");