From 925048fedfa855c5315e4951147d47b717637614 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 21 Dec 2002 12:19:29 +0000 Subject: [PATCH] incref the Py_None before returning it --- src/python.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/python.cc b/src/python.cc index 2c2f9ae3..0d5c90cb 100644 --- a/src/python.cc +++ b/src/python.cc @@ -19,6 +19,7 @@ static PyObject *shit(PyObject *self, PyObject *args) printf("SHIT CALLED!@!\n"); + Py_INCREF(Py_None); return Py_None; } @@ -36,7 +37,7 @@ static PyMethodDef OBMethods[] = { void initopenbox() { - PyClient_Type.ob_type = &PyType_Type; + OBClient_Type.ob_type = &PyType_Type; Py_InitModule("openbox", OBMethods); } -- 2.39.2