From a1defbe4267c73b318f0e0aad82691ef3647cc1f Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Fri, 19 Apr 2024 09:04:16 +0930 Subject: [PATCH] mmix disassemble memory leak It's a once-off and of no consequence, but fix it anyway. The mmix caonoicalize_syms array is an array of pointers. Freeing it won't lose symbol names. * mmix-dis.c (initialize_mmix_dis_info): Free syms. --- opcodes/mmix-dis.c | 1 + 1 file changed, 1 insertion(+) diff --git a/opcodes/mmix-dis.c b/opcodes/mmix-dis.c index ea17bfe974a..370da70ed5d 100644 --- a/opcodes/mmix-dis.c +++ b/opcodes/mmix-dis.c @@ -117,6 +117,7 @@ initialize_mmix_dis_info (struct disassemble_info *info) && minfop->reg_name[syms[i]->value] == NULL) minfop->reg_name[syms[i]->value] = syms[i]->name; } + free (syms); } } -- 2.47.3