closes bpo-32460: ensure all non-static globals have initializers (#5061)

This commit is contained in:
Benjamin Peterson 2017-12-31 10:04:13 -08:00 committed by GitHub
parent 6c6d3a4608
commit 0a37a30037
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 58 additions and 59 deletions

View file

@ -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;