From: Øyvind H. <go...@us...> - 2009-11-22 19:54:00
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via bcebce3ce25465589d379c809a12e2beda8430b9 (commit) from dc22fd899eb8081c46566566cfe23d11e13a7b63 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit bcebce3ce25465589d379c809a12e2beda8430b9 Author: Ãyvind Harboe <oyv...@zy...> Date: Sun Nov 22 19:52:37 2009 +0100 arm926ejs: fix warnings buf_set_u32() operated on an uninitialized stack variable with non-byte boundaries, which led to warnings about reading uninitialized stack. Signed-off-by: Ãyvind Harboe <oyv...@zy...> diff --git a/src/target/arm926ejs.c b/src/target/arm926ejs.c index a9d454b..56d86cc 100644 --- a/src/target/arm926ejs.c +++ b/src/target/arm926ejs.c @@ -56,7 +56,7 @@ static int arm926ejs_cp15_read(struct target *target, uint32_t op1, uint32_t op2 struct arm_jtag *jtag_info = &arm7_9->jtag_info; uint32_t address = ARM926EJS_CP15_ADDR(op1, op2, CRn, CRm); struct scan_field fields[4]; - uint8_t address_buf[2]; + uint8_t address_buf[2] = {0, 0}; uint8_t nr_w_buf = 0; uint8_t access = 1; @@ -149,7 +149,7 @@ static int arm926ejs_cp15_write(struct target *target, uint32_t op1, uint32_t op uint32_t address = ARM926EJS_CP15_ADDR(op1, op2, CRn, CRm); struct scan_field fields[4]; uint8_t value_buf[4]; - uint8_t address_buf[2]; + uint8_t address_buf[2] = {0, 0}; uint8_t nr_w_buf = 1; uint8_t access = 1; ----------------------------------------------------------------------- Summary of changes: src/target/arm926ejs.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- Main OpenOCD repository |