target: fix memory leaks on targets based on arm9tdmi
Similarly to the fix for arm926ejs (also base on arm9tdmi), fix the other targets based on arm9tdmi. The fix for arm926ejs is tested on SPEAr320 target. This fix is proposed separately because is not tested on a correct target device, but tested on SPEAr320 by hacking the target type and pretending it is the correct one, e.g.: sed -i s/arm926ejs/arm920t/ tcl/target/spear3xx.cfg The memory leaks detected and fixed are: - arm register cache; - EmbeddedICE register cache; - arm_jtag_reset_callback internal data; - struct <target_type>_common. Change-Id: I565f9a5bf144a9df78474434d86a64127ef0fbe5 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5699 Tested-by: jenkins
This commit is contained in:
@@ -347,6 +347,16 @@ static int fa526_target_create(struct target *target, Jim_Interp *interp)
|
||||
return fa526_init_arch_info(target, arm920t, target->tap);
|
||||
}
|
||||
|
||||
static void fa526_deinit_target(struct target *target)
|
||||
{
|
||||
struct arm *arm = target_to_arm(target);
|
||||
struct arm920t_common *arm920t = target_to_arm920(target);
|
||||
|
||||
arm7_9_deinit(target);
|
||||
arm_free_reg_cache(arm);
|
||||
free(arm920t);
|
||||
}
|
||||
|
||||
/** Holds methods for FA526 targets. */
|
||||
struct target_type fa526_target = {
|
||||
.name = "fa526",
|
||||
@@ -383,6 +393,7 @@ struct target_type fa526_target = {
|
||||
.commands = arm920t_command_handlers,
|
||||
.target_create = fa526_target_create,
|
||||
.init_target = arm9tdmi_init_target,
|
||||
.deinit_target = fa526_deinit_target,
|
||||
.examine = arm7_9_examine,
|
||||
.check_reset = arm7_9_check_reset,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user