Fix invalid return value
This commit is contained in:
parent
2437782636
commit
693a563af7
1 changed files with 1 additions and 2 deletions
|
@ -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).
|
||||
|
|
Loading…
Reference in a new issue