Fix looking for objects on root path

The current code would not remove the "/" for the root
path causing a subtree or other call with path being
"/" to miss any object exposed on "/". Fix this
so that "/" is removed when it is the only character.

Tested-by: Phosphor-pid-control stopped throwing when
looking for object managers.

Change-Id: I8ff49617d661910f22cc95409cd2df2489862b5f
Signed-off-by: James Feist <james.feist@linux.intel.com>
diff --git a/src/main.cpp b/src/main.cpp
index d0282db..ab43597 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -883,17 +883,14 @@
             // Interfaces need to be sorted for intersect to function
             std::sort(interfaces.begin(), interfaces.end());
 
-            if (req_path.size() > 1)
+            if (boost::ends_with(req_path, "/"))
             {
-                if (req_path.back() == '/')
-                {
-                    req_path.pop_back();
-                }
-
-                if (interface_map.find(req_path) == interface_map.end())
-                {
-                    throw NotFoundException();
-                }
+                req_path.pop_back();
+            }
+            if (req_path.size() &&
+                interface_map.find(req_path) == interface_map.end())
+            {
+                throw NotFoundException();
             }
 
             std::vector<interface_map_type::value_type> ret;
@@ -974,17 +971,14 @@
             std::sort(interfaces.begin(), interfaces.end());
             std::vector<interface_map_type::value_type> ret;
 
-            if (req_path.size() > 1)
+            if (boost::ends_with(req_path, "/"))
             {
-                if (req_path.back() == '/')
-                {
-                    req_path.pop_back();
-                }
-
-                if (interface_map.find(req_path) == interface_map.end())
-                {
-                    throw NotFoundException();
-                }
+                req_path.pop_back();
+            }
+            if (req_path.size() &&
+                interface_map.find(req_path) == interface_map.end())
+            {
+                throw NotFoundException();
             }
 
             for (auto& object_path : interface_map)
@@ -1034,17 +1028,14 @@
             std::sort(interfaces.begin(), interfaces.end());
             std::vector<std::string> ret;
 
-            if (req_path.size() > 1)
+            if (boost::ends_with(req_path, "/"))
             {
-                if (req_path.back() == '/')
-                {
-                    req_path.pop_back();
-                }
-
-                if (interface_map.find(req_path) == interface_map.end())
-                {
-                    throw NotFoundException();
-                }
+                req_path.pop_back();
+            }
+            if (req_path.size() &&
+                interface_map.find(req_path) == interface_map.end())
+            {
+                throw NotFoundException();
             }
 
             for (auto& object_path : interface_map)