diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 33b0ea0cdf..a3611e943f 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -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 ("\"");