diff options
Diffstat (limited to 'gdb/python/py-lazy-string.c')
-rw-r--r-- | gdb/python/py-lazy-string.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/python/py-lazy-string.c b/gdb/python/py-lazy-string.c index 87c6cea..74f14a9 100644 --- a/gdb/python/py-lazy-string.c +++ b/gdb/python/py-lazy-string.c @@ -156,6 +156,7 @@ stpy_dealloc (PyObject *self) lazy_string_object *self_string = (lazy_string_object *) self; xfree (self_string->encoding); + Py_TYPE (self)->tp_free (self); } /* Low level routine to create a <gdb.LazyString> object. |