gh-123290: Fix decref in _curses update_lines_cols() (#124767)

This commit is contained in:
Bénédikt Tran 2024-09-29 17:02:43 +02:00 committed by GitHub
parent 95581b3551
commit 12417a984c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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;
} }