From 94cb3bd2e225b5355152f55919c8bf2e81150622 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn?= Date: Thu, 24 Oct 2013 10:57:11 +0200 Subject: [PATCH] Feature #1678: InformationManagerDriver checks if the monitor info is empty --- src/im/InformationManagerDriver.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/im/InformationManagerDriver.cc b/src/im/InformationManagerDriver.cc index c74f2e5249..776c8501e8 100644 --- a/src/im/InformationManagerDriver.cc +++ b/src/im/InformationManagerDriver.cc @@ -122,6 +122,11 @@ void InformationManagerDriver::protocol(const string& message) const getline (is, hinfo64); + if (hinfo64.empty()) + { + return; + } + hinfo = one_util::base64_decode(hinfo64); if (result != "SUCCESS")