Skip to content

Commit d8c3e82

Browse files
ZackerySpytzmethane
authored andcommitted
Fix GCC warning in Python/hamt.c (GH-7618)
1 parent c4ef489 commit d8c3e82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/hamt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2348,7 +2348,7 @@ _PyHamt_Without(PyHamtObject *o, PyObject *key)
23482348
return NULL;
23492349
}
23502350

2351-
PyHamtNode *new_root;
2351+
PyHamtNode *new_root = NULL;
23522352

23532353
hamt_without_t res = hamt_node_without(
23542354
(PyHamtNode *)(o->h_root),

0 commit comments

Comments
 (0)