-
-
Notifications
You must be signed in to change notification settings - Fork 30.8k
New issue
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
[3.11] gh-99886: Fix crash when freeing objects with managed dictionaries #99902
Conversation
Fidget-Spinner
commented
Nov 30, 2022
•
edited by bedevere-bot
Loading
edited by bedevere-bot
- Issue: Segmentation fault when using a subclassed sqlite3.Cursor on 3.11.x #99886
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably remove the reference to the values array, before we clear it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know the internal parts good enough to comment on them; I trust you here :) The test looks ok, but perhaps we should add a more general test case; buildbots without SQLite installed won't have the sqlite3 module, so this test won't run.
I agree. However I'm not sure what exactly is causing this. My general idea is that something is causing the |
Co-authored-by: Erlend E. Aasland <[email protected]>
No sweat! Thanks so much for the quick fix! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Thanks for the reviews, Erlend and Kumar! |