Added missing return in ORBSet

Signed-off-by: Mark Charlebois <charlebm@gmail.com>
This commit is contained in:
Mark Charlebois 2015-06-09 19:16:06 -07:00
parent 4d28126e0a
commit 05b6bcd168

View File

@ -101,6 +101,7 @@ public:
while (p->next) {
if (strcmp(p->next->node_name, node_name) == 0) {
unlinkNext(p);
return true;
}
}
return nullptr;