diff options
author | Richard Jones <rjones@redhat.com> | 2009-04-15 14:09:01 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-04-15 14:09:01 +0100 |
commit | 0c2376a5c05053ce6a0479ade544be860c400fdb (patch) | |
tree | 07c324721f0038c4c2d61ba4036366ecb7a33029 /python | |
parent | ad5abc8d367c9c410051062cae066b1b141b4c76 (diff) | |
download | libguestfs-0c2376a5c05053ce6a0479ade544be860c400fdb.tar.gz libguestfs-0c2376a5c05053ce6a0479ade544be860c400fdb.tar.xz libguestfs-0c2376a5c05053ce6a0479ade544be860c400fdb.zip |
Correctly free memory in RHashtable binding for OCaml & Python.
Diffstat (limited to 'python')
-rw-r--r-- | python/guestfs-py.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |