From 6425366c4bce586a821b3a707e4319fe2e1f7ac6 Mon Sep 17 00:00:00 2001 From: Jan Kratochvil Date: Tue, 28 Feb 2012 08:14:11 +0000 Subject: [PATCH] gdb/ Fix static analysis issue found by cppcheck. * microblaze-tdep.c (microblaze_extract_return_value): Fix uninitialized BUF for size 2. --- gdb/ChangeLog | 6 ++++++ gdb/microblaze-tdep.c | 1 + 2 files changed, 7 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e312919..6fcb90f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2012-02-28 Jan Kratochvil + + Fix static analysis issue found by cppcheck. + * microblaze-tdep.c (microblaze_extract_return_value): Fix + uninitialized BUF for size 2. + 2012-02-27 Chris Dearman Nathan Froyd Maciej W. Rozycki diff --git a/gdb/microblaze-tdep.c b/gdb/microblaze-tdep.c index ca6d129..6aea41e 100644 --- a/gdb/microblaze-tdep.c +++ b/gdb/microblaze-tdep.c @@ -562,6 +562,7 @@ microblaze_extract_return_value (struct type *type, struct regcache *regcache, memcpy(valbuf, buf + MICROBLAZE_REGISTER_SIZE - 1, 1); return; case 2: /* return last 2 bytes in register. */ + regcache_cooked_read (regcache, MICROBLAZE_RETVAL_REGNUM, buf); memcpy(valbuf, buf + MICROBLAZE_REGISTER_SIZE - 2, 2); return; case 4: /* for sizes 4 or 8, copy the required length. */ -- 2.7.4