kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 4ae3d23c7eddfedfadf8594be9d7a435f63abb42
parent 0cda9ecfb0593d54a5de13427fcb6635ced788c1
Author: Joris Vink <joris@coders.se>
Date:   Thu, 18 Oct 2018 22:24:58 +0200

s/INCREF/DECREF

Diffstat:
src/python.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/python.c b/src/python.c @@ -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); }