aboutsummaryrefslogtreecommitdiff
path: root/src/target/image.c
diff options
context:
space:
mode:
authorPaul Fertser <fercerpav@gmail.com>2015-02-01 22:19:38 +0300
committerPaul Fertser <fercerpav@gmail.com>2015-02-11 15:34:11 +0000
commitc8d351b1bf592046cef7dc48d84eb10a1ba93993 (patch)
tree83152911c11ae6c1550ded09e7f25dfbef17ee59 /src/target/image.c
parent7f000f824bb405d3985256b123f3e4b55dc43b6b (diff)
target/image: fix undefined behaviour when loading with GDB
The image struct is malloc'd and hence base_address_set doesn't have a defined value. Caught by Valgrind. Change-Id: Ice15b2299fc768e44e8034eeb93e035076eacd03 Signed-off-by: Paul Fertser <fercerpav@gmail.com> Reviewed-on: http://openocd.zylin.com/2524 Tested-by: jenkins Reviewed-by: Stian Skjelstad <stian@nixia.no> Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
Diffstat (limited to 'src/target/image.c')
-rw-r--r--src/target/image.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/target/image.c b/src/target/image.c
index 07420b1f..b1b7e3a6 100644
--- a/src/target/image.c
+++ b/src/target/image.c
@@ -788,6 +788,7 @@ int image_open(struct image *image, const char *url, const char *type_string)
}
} else if (image->type == IMAGE_BUILDER) {
image->num_sections = 0;
+ image->base_address_set = 0;
image->sections = NULL;
image->type_private = NULL;
}