Fixed refcount error.
authorSven Trenkel <collectd@semidefinite.de>
Mon, 14 Dec 2009 17:49:02 +0000 (18:49 +0100)
committerSven Trenkel <collectd@semidefinite.de>
Mon, 14 Dec 2009 17:49:02 +0000 (18:49 +0100)
src/python.c

index a33bb47..d750d95 100644 (file)
@@ -302,7 +302,6 @@ static void cpy_log_exception(const char *context) {
                
                line = PyList_GET_ITEM(list, i); /* Borrowed reference. */
                s = strdup(PyString_AsString(line));
-               Py_DECREF(line);
                if (s[strlen(s) - 1] == '\n')
                        s[strlen(s) - 1] = 0;
                Py_BEGIN_ALLOW_THREADS