gdb/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Tue, 28 Feb 2012 08:14:11 +0000 (08:14 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Tue, 28 Feb 2012 08:14:11 +0000 (08:14 +0000)
Fix static analysis issue found by cppcheck.
* microblaze-tdep.c (microblaze_extract_return_value): Fix
uninitialized BUF for size 2.

gdb/ChangeLog
gdb/microblaze-tdep.c

index e3129197cc4f55d83d551a06e2f3962bd752608f..6fcb90f23bfcc2cb64c3f5fed2d782da63489b50 100644 (file)
@@ -1,3 +1,9 @@
+2012-02-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       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  <chris@mips.com>
             Nathan Froyd  <froydnj@codesourcery.com>
             Maciej W. Rozycki  <macro@codesourcery.com>
index ca6d1297bbacb5b209c5ce79ddee987139336818..6aea41ed55b1056b147c7e103faf2eac1e4626b0 100644 (file)
@@ -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.  */