summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-01-17 13:30:29 (GMT)
committerGitHub <noreply@github.com>2024-01-17 13:30:29 (GMT)
commit76d0c4b6885365a08e840d99ab948ab2b7c4a34e (patch)
tree9ea248e1edf988b22c41cbdcdbd56de0eaf2ca69 /Misc
parentbda62c0b22f8266b515e9ebb64a6115947b9dd43 (diff)
downloadcpython-76d0c4b6885365a08e840d99ab948ab2b7c4a34e.zip
cpython-76d0c4b6885365a08e840d99ab948ab2b7c4a34e.tar.gz
cpython-76d0c4b6885365a08e840d99ab948ab2b7c4a34e.tar.bz2
[3.11] gh-104282: Fix null pointer dereference in `lzma._decode_filter_properties` (GH-104283) (GH-114182)
(cherry picked from commit 0154405350c272833bd51f68138223655e142a37) Co-authored-by: Radislav Chugunov <52372310+chgnrdv@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-05-08-09-30-00.gh-issue-104282.h4c6Eb.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-05-08-09-30-00.gh-issue-104282.h4c6Eb.rst b/Misc/NEWS.d/next/Library/2023-05-08-09-30-00.gh-issue-104282.h4c6Eb.rst
new file mode 100644
index 0000000..569ce66
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-05-08-09-30-00.gh-issue-104282.h4c6Eb.rst
@@ -0,0 +1,3 @@
+Fix null pointer dereference in :func:`lzma._decode_filter_properties`
+due to improper handling of BCJ filters with properties of zero length.
+Patch by Radislav Chugunov.