summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrian Schubert <brianm.schubert@gmail.com>2024-09-20 10:08:59 (GMT)
committerGitHub <noreply@github.com>2024-09-20 10:08:59 (GMT)
commit63f196090f90cbfe5f698824655f74dea5cb2b29 (patch)
tree53673a94db1e9a94bea99f0cc6af3611d910d5a0 /Misc
parentbaa3550bc3a119f41cc4eaed5373f9d695208e8e (diff)
downloadcpython-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/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2024-09-19-11-47-39.gh-issue-124248.g7rufd.rst2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index b031eb7..2db17ad 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -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``).