From d8c3e820b4fcdc45b80ba47f615c95e99e2e931b Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Fri, 6 Jul 2018 02:50:38 -0600 Subject: Fix GCC warning in Python/hamt.c (GH-7618) --- Python/hamt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/hamt.c b/Python/hamt.c index f8bce59..562f777 100644 --- a/Python/hamt.c +++ b/Python/hamt.c @@ -2348,7 +2348,7 @@ _PyHamt_Without(PyHamtObject *o, PyObject *key) return NULL; } - PyHamtNode *new_root; + PyHamtNode *new_root = NULL; hamt_without_t res = hamt_node_without( (PyHamtNode *)(o->h_root), -- cgit v0.12