diff options
author | TingPing <tngpng@gmail.com> | 2013-04-12 23:08:02 -0300 |
---|---|---|
committer | TingPing <tngpng@gmail.com> | 2013-04-12 23:08:02 -0300 |
commit | 44a2ed5a9794d92cdf3fc5e5dcc52c4b9c95f441 (patch) | |
tree | 777b1143cd8fda43ad7017fa9ad2754a81504887 /plugins/python | |
parent | ba3f4daee865544817c7dfa82fb179b6bf80f0dd (diff) |
Fix possible crash
Thanks to - http://forum.xchat.org/viewtopic.php?f=5&t=7558
Diffstat (limited to 'plugins/python')
-rw-r--r-- | plugins/python/python.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/python/python.c b/plugins/python/python.c index 3305ce2c..912341a8 100644 --- a/plugins/python/python.c +++ b/plugins/python/python.c @@ -919,9 +919,10 @@ Context_compare(ContextObject *a, ContextObject *b, int op) else { PyErr_SetString(PyExc_TypeError, "contexts are either equal or not equal"); - ret = NULL; + ret = Py_None; } + Py_INCREF(ret); return ret; } |