mirror of
https://github.com/python/cpython.git
synced 2024-11-23 18:04:37 +08:00
Fix a leak of a reference on None.
This commit is contained in:
parent
574a25127a
commit
7d6cc5b303
@ -2284,9 +2284,7 @@ PyCurses_TypeAhead(PyObject *self, PyObject *args)
|
||||
|
||||
if (!PyArg_ParseTuple(args,"i;fd",&fd)) return NULL;
|
||||
|
||||
PyCursesCheckERR(typeahead( fd ), "typeahead");
|
||||
Py_INCREF(Py_None);
|
||||
return Py_None;
|
||||
return PyCursesCheckERR(typeahead( fd ), "typeahead");
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
|
Loading…
Reference in New Issue
Block a user