You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By running the interpreter on Valgrind, I found out there is a bug in DBInterpreter::processReturn(). The top of the call stack is accessed when the stack is empty. This has undefined behavior.
Also, I think the call stack should be handled by the EventGenerator so that a call ID is pushed on a new CallEvent and popped on a ReturnEvent.
Maybe a segment stack would make return detection easier?
The text was updated successfully, but these errors were encountered:
By running the interpreter on Valgrind, I found out there is a bug in
DBInterpreter::processReturn()
. The top of the call stack is accessed when the stack is empty. This has undefined behavior.Also, I think the call stack should be handled by the
EventGenerator
so that a call ID is pushed on a newCallEvent
and popped on aReturnEvent
.Maybe a segment stack would make return detection easier?
The text was updated successfully, but these errors were encountered: