Skip to content

Commit

Permalink
xtensa: fix free xtensa detail
Browse files Browse the repository at this point in the history
  • Loading branch information
imbillow committed Nov 4, 2024
1 parent f292b38 commit 7535bde
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion suite/cstest/src/test_detail.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,9 @@ void test_detail_free(TestDetail *detail)
if (detail->m68k) {
test_detail_m68k_free(detail->m68k);
}

if (detail->xtensa) {
test_detail_xtensa_free(detail->xtensa);
}
cs_mem_free(detail);
}

Expand Down

0 comments on commit 7535bde

Please sign in to comment.