From: Zackery Spytz Date: Fri, 6 Jul 2018 08:50:38 +0000 (-0600) Subject: Fix GCC warning in Python/hamt.c (GH-7618) X-Git-Tag: v3.8.0a1~1430 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d8c3e820b4fcdc45b80ba47f615c95e99e2e931b;p=thirdparty%2FPython%2Fcpython.git Fix GCC warning in Python/hamt.c (GH-7618) --- diff --git a/Python/hamt.c b/Python/hamt.c index f8bce5961afc..562f777ea0bf 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),