Fix invalid return value

This commit is contained in:
Vincent Coubard 2015-11-22 21:14:51 +00:00
parent 2437782636
commit 693a563af7

View file

@ -124,13 +124,12 @@ public:
previous->chainAsNext(current->getNext());
}
delete current;
return true;
return;
}
previous = current;
current = current->getNext();
}
return false;
}
/** Clear the call chain (remove all functions in the chain).