summaryrefslogtreecommitdiff
path: root/src/target/breakpoints.c
diff options
context:
space:
mode:
authorntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2007-10-01 08:31:30 +0000
committerntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2007-10-01 08:31:30 +0000
commit995326b6000773efd454e308d487dec0b9f564b5 (patch)
treeeb60bb8053fdc33aeb6490080a1e4da678dc7014 /src/target/breakpoints.c
parented36a8d15dfd04e47d23d5f1e09078f105785fb1 (diff)
downloadopenocd+libswd-995326b6000773efd454e308d487dec0b9f564b5.tar.gz
openocd+libswd-995326b6000773efd454e308d487dec0b9f564b5.tar.bz2
openocd+libswd-995326b6000773efd454e308d487dec0b9f564b5.tar.xz
openocd+libswd-995326b6000773efd454e308d487dec0b9f564b5.zip
- flash autoerase <on|off> cmd added, default is off - flash banks are calculated and erased prior to write (flash write_image only)
- corrected array overrun in armv7m.c - corrected breakpoint memory allocation bug - image read now uses fgets, vastly improves reading of large files - improved hex file reading, support for Linear Address Record added git-svn-id: svn://svn.berlios.de/openocd/trunk@208 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target/breakpoints.c')
-rw-r--r--src/target/breakpoints.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/breakpoints.c b/src/target/breakpoints.c
index cc38d029..f52ff306 100644
--- a/src/target/breakpoints.c
+++ b/src/target/breakpoints.c
@@ -62,7 +62,7 @@ int breakpoint_add(target_t *target, u32 address, u32 length, enum breakpoint_ty
(*breakpoint_p)->length = length;
(*breakpoint_p)->type = type;
(*breakpoint_p)->set = 0;
- (*breakpoint_p)->orig_instr = malloc(CEIL(length, 8));
+ (*breakpoint_p)->orig_instr = malloc(length);
(*breakpoint_p)->next = NULL;
if ((retval = target->type->add_breakpoint(target, *breakpoint_p)) != ERROR_OK)