git.annexia.org
/
libguestfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8b88649
)
python: Memory leak: Free roots array along handle close path.
author
Richard W.M. Jones
<rjones@redhat.com>
Tue, 29 Nov 2011 18:20:05 +0000
(18:20 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Fri, 2 Dec 2011 08:37:04 +0000
(08:37 +0000)
(cherry picked from commit
e7e3a32edc29e3448b1d7efb3f6b53c5173c4e9c
)
python/guestfs-py-byhand.c
patch
|
blob
|
history
diff --git
a/python/guestfs-py-byhand.c
b/python/guestfs-py-byhand.c
index
1756963
..
53c2e98
100644
(file)
--- a/
python/guestfs-py-byhand.c
+++ b/
python/guestfs-py-byhand.c
@@
-76,6
+76,7
@@
py_guestfs_close (PyObject *self, PyObject *args)
for (i = 0; i < len; ++i)
Py_XDECREF (callbacks[i]);
+ free (callbacks);
Py_INCREF (Py_None);
return Py_None;