Skip to content

Commit 625755e

Browse files
Fix GCC warning in Python/hamt.c (pythonGH-7618)
(cherry picked from commit d8c3e82) Co-authored-by: Zackery Spytz <[email protected]>
1 parent e217d23 commit 625755e

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)