From e7e3a32edc29e3448b1d7efb3f6b53c5173c4e9c Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 29 Nov 2011 18:20:05 +0000 Subject: [PATCH] python: Memory leak: Free roots array along handle close path. --- python/guestfs-py-byhand.c | 1 + 1 file changed, 1 insertion(+) 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; -- 1.8.3.1