Skip to content

Commit 2eca13c

Browse files
committed
Fix bitwise operation in _queueitem_clear_data
1 parent 122ac6c commit 2eca13c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_interpqueuesmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ _queueitem_clear_data(_queueitem *item)
436436
return;
437437
}
438438
// It was allocated in queue_put().
439-
(void)_release_xid_data(item->data, XID_IGNORE_EXC & XID_FREE);
439+
(void)_release_xid_data(item->data, XID_IGNORE_EXC | XID_FREE);
440440
item->data = NULL;
441441
}
442442

0 commit comments

Comments
 (0)