diff options
author | Zackery Spytz <zspytz@gmail.com> | 2019-03-20 09:16:25 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-03-20 09:16:25 (GMT) |
commit | 9b4a1b1e23d4a7cb18ad26f405bdc741af69f342 (patch) | |
tree | 9f48b672192a1e4578f12e80b77d948cf237d9c9 /Misc | |
parent | fa1537684869186da7938e4330361bf02363bac8 (diff) | |
download | cpython-9b4a1b1e23d4a7cb18ad26f405bdc741af69f342.zip cpython-9b4a1b1e23d4a7cb18ad26f405bdc741af69f342.tar.gz cpython-9b4a1b1e23d4a7cb18ad26f405bdc741af69f342.tar.bz2 |
bpo-36374: Fix a possible null pointer dereference (GH-12449)
https://bugs.python.org/issue36374
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-03-19-15-46-42.bpo-36374.EWKMZE.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-03-19-15-46-42.bpo-36374.EWKMZE.rst b/Misc/NEWS.d/next/Core and Builtins/2019-03-19-15-46-42.bpo-36374.EWKMZE.rst new file mode 100644 index 0000000..2eac301 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-03-19-15-46-42.bpo-36374.EWKMZE.rst @@ -0,0 +1,2 @@ +Fix a possible null pointer dereference in ``merge_consts_recursive()``. +Patch by Zackery Spytz. |