VOM: Inspect: fix the bug
If key is passed without ":", results in segmentation fault.
This patch fixes this issue.
Change-Id: I4e6bb3431c261cc2ac752b966a11edd7aa3304a0
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
diff --git a/src/vpp-api/vom/inspect.cpp b/src/vpp-api/vom/inspect.cpp
index c78128c..55b533b 100644
--- a/src/vpp-api/vom/inspect.cpp
+++ b/src/vpp-api/vom/inspect.cpp
@@ -54,10 +54,9 @@
}
} else if (message.find("keys") != std::string::npos) {
OM::dump(output);
- } else if (message.find("key") != std::string::npos) {
+ } else if (message.find("key:") != std::string::npos) {
std::vector<std::string> results;
boost::split(results, message, boost::is_any_of(":\n"));
-
OM::dump(results[1], output);
} else if (message.find("all") != std::string::npos) {
/*