summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-04-30 10:19:34 (GMT)
committerGitHub <noreply@github.com>2019-04-30 10:19:34 (GMT)
commitb84cb70880a0acfcbbaca7bcda405af08f94d269 (patch)
tree2910123a81a6245417ac3413dd3ef00896652ce2 /Misc
parent3bbcc92577f8e616bc94c679040043bacd00ebf1 (diff)
downloadcpython-b84cb70880a0acfcbbaca7bcda405af08f94d269.zip
cpython-b84cb70880a0acfcbbaca7bcda405af08f94d269.tar.gz
cpython-b84cb70880a0acfcbbaca7bcda405af08f94d269.tar.bz2
bpo-36734: Fix compilation of faulthandler.c on HP-UX (GH-12970)
Initialize "stack_t current_stack" to zero using memset().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-04-26-17-14-20.bpo-36734.p2MaiN.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-04-26-17-14-20.bpo-36734.p2MaiN.rst b/Misc/NEWS.d/next/Library/2019-04-26-17-14-20.bpo-36734.p2MaiN.rst
new file mode 100644
index 0000000..0934199
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-04-26-17-14-20.bpo-36734.p2MaiN.rst
@@ -0,0 +1,2 @@
+Fix compilation of ``faulthandler.c`` on HP-UX. Initialize ``stack_t
+current_stack`` to zero using ``memset()``.