8000 move DECREF io_module to the right spot · python/cpython@fd53745 · GitHub
[go: up one dir, main page]

Skip to content

Commit fd53745

Browse files
authored
move DECREF io_module to the right spot
1 parent a1186c9 commit fd53745

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_xxtestfuzz/fuzzer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,8 +459,8 @@ static int init_elementtree_parsewhole(void) {
459459
if (io_module == NULL) {
460460
return 0;
461461
}
462-
Py_DECREF(io_module);
463462
bytesio_type = PyObject_GetAttrString(io_module, "BytesIO");
463+
Py_DECREF(io_module);
464464
if (bytesio_type == NULL) {
465465
return 0;
466466
}

0 commit comments

Comments
 (0)
0