diff options
author | Bill Fisher <william.w.fisher@gmail.com> | 2022-12-23 14:45:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-23 14:45:53 (GMT) |
commit | 88d565f32a709140664444c6dea20ecd35a10e94 (patch) | |
tree | bd185455ee0b70ed60f6ca29479f2fb918999599 /Misc | |
parent | 2659036c757a11235c4abd21f02c3a548a344fe7 (diff) | |
download | cpython-88d565f32a709140664444c6dea20ecd35a10e94.zip cpython-88d565f32a709140664444c6dea20ecd35a10e94.tar.gz cpython-88d565f32a709140664444c6dea20ecd35a10e94.tar.bz2 |
gh-99110: Initialize `frame->previous` in init_frame to fix segmentation fault when accessing `frame.f_back` (#100182)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-12-12-01-05-16.gh-issue-99110.1JqtIg.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-12-12-01-05-16.gh-issue-99110.1JqtIg.rst b/Misc/NEWS.d/next/Core and Builtins/2022-12-12-01-05-16.gh-issue-99110.1JqtIg.rst new file mode 100644 index 0000000..175740d --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-12-12-01-05-16.gh-issue-99110.1JqtIg.rst @@ -0,0 +1,2 @@ +Initialize frame->previous in frameobject.c to fix a segmentation fault when +accessing frames created by :c:func:`PyFrame_New`. |