From: Richard W.M. Jones Date: Tue, 29 Nov 2011 18:20:05 +0000 (+0000) Subject: python: Memory leak: Free roots array along handle close path. X-Git-Tag: 1.15.8~1 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=e7e3a32edc29e3448b1d7efb3f6b53c5173c4e9c;hp=00c9755ee3bea98968acea47bac858db94f7fbe2 python: Memory leak: Free roots array along handle close path. --- diff --git a/python/guestfs-py-byhand.c b/python/guestfs-py-byhand.c index 1756963..53c2e98 100644 --- 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;