From 8d6292d9a070e87bf49d7d2894cd933795b9e3a8 Mon Sep 17 00:00:00 2001 From: ntfreak Date: Fri, 25 Jan 2008 18:09:21 +0000 Subject: fixed incorrect elf segment size - Thanks Øyvind Harboe MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://svn.berlios.de/openocd/trunk@277 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- src/target/target.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/target/target.c') diff --git a/src/target/target.c b/src/target/target.c index 5c1f13c1..f17a1c51 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -781,7 +781,7 @@ int target_checksum_memory(struct target_s *target, u32 address, u32 size, u32* size, &checksum)) == ERROR_TARGET_RESOURCE_NOT_AVAILABLE) { buffer = malloc(size); - if (buffer==NULL) + if (buffer == NULL) { ERROR("error allocating buffer for section (%d bytes)", size); return ERROR_OK; @@ -1925,7 +1925,7 @@ int handle_verify_image_command(struct command_context_s *cmd_ctx, char *cmd, ch for (i = 0; i < image.num_sections; i++) { buffer = malloc(image.sections[i].size); - if (buffer==NULL) + if (buffer == NULL) { command_print(cmd_ctx, "error allocating buffer for section (%d bytes)", image.sections[i].size); break; -- cgit v1.2.3