summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRadislav Chugunov <52372310+chgnrdv@users.noreply.github.com>2024-01-17 13:15:44 (GMT)
committerGitHub <noreply@github.com>2024-01-17 13:15:44 (GMT)
commit0154405350c272833bd51f68138223655e142a37 (patch)
tree5042245564375d418c5ad9475ceb2e71481eb5c9 /Misc
parentb204c4beb44c1a9013f8da16984c9129374ed8c5 (diff)
downloadcpython-0154405350c272833bd51f68138223655e142a37.zip
cpython-0154405350c272833bd51f68138223655e142a37.tar.gz
cpython-0154405350c272833bd51f68138223655e142a37.tar.bz2
gh-104282: Fix null pointer dereference in `lzma._decode_filter_properties` (GH-104283)
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.