aboutsummaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2022-02-06 23:40:54 -0800
committerGitHub <noreply@github.com>2022-02-06 23:40:54 -0800
commit59e004af63742361b67d1e1ae70229ff0db1059d (patch)
tree5372c695e1acce925a16678d4f1bb2453a2e7bc2 /Misc
parenta335d98f19b7fa66159d12932cc9a05eb2d8395f (diff)
downloadcpython3-59e004af63742361b67d1e1ae70229ff0db1059d.tar.gz
bpo-40479: Fix undefined behavior in Modules/_hashopenssl.c (GH-31153)
va_end() must be called before returning.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-02-06-23-08-30.bpo-40479.zED3Zu.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-02-06-23-08-30.bpo-40479.zED3Zu.rst b/Misc/NEWS.d/next/Core and Builtins/2022-02-06-23-08-30.bpo-40479.zED3Zu.rst
new file mode 100644
index 0000000000..52701d53d8
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-02-06-23-08-30.bpo-40479.zED3Zu.rst
@@ -0,0 +1 @@
+Add a missing call to ``va_end()`` in ``Modules/_hashopenssl.c``.