From: Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com> Date: Tue, 31 Dec 2019 02:31:52 +0000 (+0300) Subject: closes bpo-37446: resolve undefined behavior in Python/hamt.c (GH-17727) X-Git-Tag: v3.9.0a3~168 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d0c92e81aa2171228a23cb2bed36f7dab975257d;p=thirdparty%2FPython%2Fcpython.git closes bpo-37446: resolve undefined behavior in Python/hamt.c (GH-17727) --- diff --git a/Python/hamt.c b/Python/hamt.c index ea659c800fc4..f5586eec5b07 100644 --- a/Python/hamt.c +++ b/Python/hamt.c @@ -1864,7 +1864,7 @@ hamt_node_array_without(PyHamtNode_Array *self, continue; } - bitmap |= 1 << i; + bitmap |= 1U << i; if (IS_BITMAP_NODE(node)) { PyHamtNode_Bitmap *child = (PyHamtNode_Bitmap *)node;