From cdd63641d375cb2d27b9e1066f97705663307d4d Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Mon, 11 Jun 2018 00:00:07 -0600 Subject: [PATCH] Fix GCC warning (-Wmaybe-uninitialized) in Python/hamt.c --- Python/hamt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/hamt.c b/Python/hamt.c index f8bce5961afc61f..562f777ea0bf868 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),