From 0a37a30037073a4a9ba45e560c8445048e5f2ba2 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 31 Dec 2017 10:04:13 -0800 Subject: closes bpo-32460: ensure all non-static globals have initializers (#5061) --- Python/pyhash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/pyhash.c') diff --git a/Python/pyhash.c b/Python/pyhash.c index 1537a0fb49..a0850d066b 100644 --- a/Python/pyhash.c +++ b/Python/pyhash.c @@ -17,7 +17,7 @@ extern "C" { #endif -_Py_HashSecret_t _Py_HashSecret; +_Py_HashSecret_t _Py_HashSecret = {0}; #if Py_HASH_ALGORITHM == Py_HASH_EXTERNAL extern PyHash_FuncDef PyHash_Func; -- cgit v1.2.1