summaryrefslogtreecommitdiffstats
path: root/ffi.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-06-09 07:00:20 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-06-09 07:00:20 -0700
commit5bdf9fbeb0a6714158535e5aec0619df49b687c6 (patch)
treee38c2774c662d1ef56f482c58c2ee7822d780904 /ffi.c
parentb2b2173b5c28b0d6b012b9369cedba37751d6a4b (diff)
downloadtxr-5bdf9fbeb0a6714158535e5aec0619df49b687c6.tar.gz
txr-5bdf9fbeb0a6714158535e5aec0619df49b687c6.tar.bz2
txr-5bdf9fbeb0a6714158535e5aec0619df49b687c6.zip
ffi: fix leak on struct/union redefinition.
* ffi.c (make_ffi_type_struct, make_ffi_type_union): When we are replacing the existing type, if HAVE_FFI is true, we must free the tft->ft object before clobbering the tft with zeros.
Diffstat (limited to 'ffi.c')
-rw-r--r--ffi.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ffi.c b/ffi.c
index 4c457584..6b67ac4d 100644
--- a/ffi.c
+++ b/ffi.c
@@ -3251,6 +3251,9 @@ static val make_ffi_type_struct(val syntax, val lisp_type,
free(memb);
return make_ffi_type_struct(syntax, lisp_type, nil, self);
}
+#if HAVE_LIBFFI
+ free(tft->ft);
+#endif
free(tft->memb);
memset(tft, 0, sizeof *tft);
}
@@ -3424,6 +3427,9 @@ static val make_ffi_type_union(val syntax, val use_existing, val self)
free(memb);
return make_ffi_type_union(syntax, nil, self);
}
+#if HAVE_LIBFFI
+ free(tft->ft);
+#endif
free(tft->memb);
memset(tft, 0, sizeof *tft);
}