Fix leak of ht_virtual_xrefs (#5459)

This commit is contained in:
Rot127 2025-10-15 16:25:56 +00:00 committed by GitHub
parent eec511547e
commit 3ff1496353
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -213,6 +213,7 @@ RZ_API RzAnalysis *rz_analysis_free(RzAnalysis *a) {
ht_up_free(a->ht_rop_semantics);
ht_sp_free(a->plugins);
rz_analysis_debug_info_free(a->debug_info);
ht_sp_free(a->ht_virtual_xrefs);
free(a->sdb_types_path);
free(a);
return NULL;