Skip to content

Commit 995bdc8

Browse files
We can just make it a plain assignment, 1a9cdaf was 3.15+ anyway.
1 parent 8232f00 commit 995bdc8

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
@@ -464,7 +464,7 @@ decompress_buf(BZ2Decompressor *d, Py_ssize_t max_length)
464464

465465
if (catch_bz2_error(bzret)) {
466466
d->bzerror = bzret;
467-
_Py_atomic_store_char_relaxed(&d->needs_input, 0);
467+
d->needs_input = 0;
468468
goto error;
469469
}
470470
if (bzret == BZ_STREAM_END) {

0 commit comments

Comments
 (0)