We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When deleting a callback under very specific conditions we can get ugly errors.
In particular, when deleting a callback that is the last of its kind from within that callback we see a segfault in the following code:
panda/panda/include/panda/callbacks/cb-macros.h
Lines 126 to 138 in d0618d3
A minimal example of this behavior for reproducing:
#!/usr/bin/env python3 from pandare import Panda panda = Panda(generic="i386") @panda.queue_blocking def run_cmd(): panda.revert_sync("root") print(panda.run_serial_cmd("uname -a")) print(panda.run_serial_cmd("uname -a")) print(panda.run_serial_cmd("uname -a")) panda.end_analysis() @panda.cb_main_loop_wait def asidchange(): panda.delete_callbacks() panda.run()
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When deleting a callback under very specific conditions we can get ugly errors.
In particular, when deleting a callback that is the last of its kind from within that callback we see a segfault in the following code:
panda/panda/include/panda/callbacks/cb-macros.h
Lines 126 to 138 in d0618d3
A minimal example of this behavior for reproducing:
The text was updated successfully, but these errors were encountered: