mirror of https://github.com/python/cpython
gh-123290: Fix decref in _curses update_lines_cols() (#124767)
This commit is contained in:
parent
95581b3551
commit
12417a984c
|
@ -4036,7 +4036,7 @@ update_lines_cols(PyObject *private_module)
|
||||||
|
|
||||||
error:
|
error:
|
||||||
Py_XDECREF(o);
|
Py_XDECREF(o);
|
||||||
Py_DECREF(exposed_module);
|
Py_XDECREF(exposed_module);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue