From 0c2376a5c05053ce6a0479ade544be860c400fdb Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Wed, 15 Apr 2009 14:09:01 +0100 Subject: Correctly free memory in RHashtable binding for OCaml & Python. --- python/guestfs-py.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') diff --git a/python/guestfs-py.c b/python/guestfs-py.c index 8fbab747..21ecd543 100644 --- a/python/guestfs-py.c +++ b/python/guestfs-py.c @@ -2072,7 +2072,7 @@ py_guestfs_tune2fs_l (PyObject *self, PyObject *args) } py_r = put_table (r); - free (r); + free_strings (r); return py_r; } -- cgit