Skip to content

Commit e194023

Browse files
We can just make it a plain assignment, 1a9cdaf was 3.15+ anyway.
1 parent 6c8df75 commit e194023

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_bz2module.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ decompress_buf(BZ2Decompressor *d, Py_ssize_t max_length)
458458

459459
if (catch_bz2_error(bzret)) {
460460
d->bzerror = bzret;
461-
_Py_atomic_store_char_relaxed(&d->needs_input, 0);
461+
d->needs_input = 0;
462462
goto error;
463463
}
464464
if (bzret == BZ_STREAM_END) {

0 commit comments

Comments
 (0)