projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
94c927f
)
Fixed refcount error.
author
Sven Trenkel
<collectd@semidefinite.de>
Mon, 14 Dec 2009 17:49:02 +0000
(18:49 +0100)
committer
Sven Trenkel
<collectd@semidefinite.de>
Mon, 14 Dec 2009 17:49:02 +0000
(18:49 +0100)
src/python.c
patch
|
blob
|
history
diff --git
a/src/python.c
b/src/python.c
index
a33bb47
..
d750d95
100644
(file)
--- a/
src/python.c
+++ b/
src/python.c
@@
-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