From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 6 Jul 2018 09:43:05 +0000 (-0700) Subject: Fix GCC warning in Python/hamt.c (GH-7618) X-Git-Tag: v3.7.1rc1~322 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=625755eb8cc2d10e02b06fb8f296252c5238a1ef;p=python Fix GCC warning in Python/hamt.c (GH-7618) (cherry picked from commit d8c3e820b4fcdc45b80ba47f615c95e99e2e931b) Co-authored-by: Zackery Spytz --- diff --git a/Python/hamt.c b/Python/hamt.c index f8bce5961a..562f777ea0 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),