Skip to content
Snippets Groups Projects
Commit d570e4f6 authored by David Brownell's avatar David Brownell
Browse files

ARM720: bugfix


The "ARM720 uses the new inheritance/nesting scheme" patch
wrongly scrubbed a calloc() from arm720t_target_create().

Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
parent 61af6a68
No related branches found
No related tags found
No related merge requests found
......@@ -403,8 +403,9 @@ static int arm720t_init_arch_info(target_t *target,
static int arm720t_target_create(struct target_s *target, Jim_Interp *interp)
{
struct arm720t_common_s *arm720t = target_to_arm720(target);
struct arm720t_common_s *arm720t = calloc(1, sizeof(*arm720t));
arm720t->arm7tdmi_common->arm7_9_common.armv4_5_common.is_armv4 = true;
return arm720t_init_arch_info(target, arm720t, target->tap);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment