diff options
author | Brian Schubert <brianm.schubert@gmail.com> | 2024-09-20 10:08:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-20 10:08:59 (GMT) |
commit | 63f196090f90cbfe5f698824655f74dea5cb2b29 (patch) | |
tree | 53673a94db1e9a94bea99f0cc6af3611d910d5a0 /Misc | |
parent | baa3550bc3a119f41cc4eaed5373f9d695208e8e (diff) | |
download | cpython-63f196090f90cbfe5f698824655f74dea5cb2b29.zip cpython-63f196090f90cbfe5f698824655f74dea5cb2b29.tar.gz cpython-63f196090f90cbfe5f698824655f74dea5cb2b29.tar.bz2 |
gh-124248: Fix crash in struct when processing 0p fields (#124251)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-09-19-11-47-39.gh-issue-124248.g7rufd.rst | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -1653,6 +1653,7 @@ Scott Schram Robin Schreiber Chad J. Schroeder Simon-Martin Schroeder +Brian Schubert Christian Schubert Sam Schulenburg Andreas Schwab diff --git a/Misc/NEWS.d/next/Library/2024-09-19-11-47-39.gh-issue-124248.g7rufd.rst b/Misc/NEWS.d/next/Library/2024-09-19-11-47-39.gh-issue-124248.g7rufd.rst new file mode 100644 index 0000000..1bd333f --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-09-19-11-47-39.gh-issue-124248.g7rufd.rst @@ -0,0 +1,2 @@ +Fixed potential crash when using :mod:`struct` to process zero-width +'Pascal string' fields (``0p``). |