Skip to content
Snippets Groups Projects
Commit b6caf057 authored by oharboe's avatar oharboe
Browse files

fix crash when connecting GDB to powered down target

git-svn-id: svn://svn.berlios.de/openocd/trunk@1044 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent f7458c6b
No related branches found
No related tags found
No related merge requests found
...@@ -1642,7 +1642,7 @@ int arm11_set_reg(reg_t *reg, u8 *buf) ...@@ -1642,7 +1642,7 @@ int arm11_set_reg(reg_t *reg, u8 *buf)
return ERROR_OK; return ERROR_OK;
} }
void arm11_build_reg_cache(target_t *target) int arm11_build_reg_cache(target_t *target)
{ {
arm11_common_t *arm11 = target->arch_info; arm11_common_t *arm11 = target->arch_info;
...@@ -1700,6 +1700,7 @@ void arm11_build_reg_cache(target_t *target) ...@@ -1700,6 +1700,7 @@ void arm11_build_reg_cache(target_t *target)
rs->def_index = i; rs->def_index = i;
rs->target = target; rs->target = target;
} }
return ERROR_OK;
} }
int arm11_handle_bool(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc, bool * var, char * name) int arm11_handle_bool(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc, bool * var, char * name)
......
...@@ -220,7 +220,7 @@ int arm11_init_target(struct command_context_s *cmd_ctx, struct target_s *target ...@@ -220,7 +220,7 @@ int arm11_init_target(struct command_context_s *cmd_ctx, struct target_s *target
int arm11_quit(void); int arm11_quit(void);
/* helpers */ /* helpers */
void arm11_build_reg_cache(target_t *target); int arm11_build_reg_cache(target_t *target);
int arm11_set_reg(reg_t *reg, u8 *buf); int arm11_set_reg(reg_t *reg, u8 *buf);
int arm11_get_reg(reg_t *reg); int arm11_get_reg(reg_t *reg);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment