s/INCREF/DECREF

This commit is contained in:
Joris Vink 2018-10-18 22:24:58 +02:00
parent 0cda9ecfb0
commit 4ae3d23c7e
1 changed files with 1 additions and 1 deletions

View File

@ -1162,7 +1162,7 @@ pysocket_op_dealloc(struct pysocket_op *op)
kore_buf_cleanup(&op->data.buffer);
Py_DECREF(op->data.socket);
Py_INCREF(op->data.coro->obj);
Py_DECREF(op->data.coro->obj);
PyObject_Del((PyObject *)op);
}