diff options
author | Michael Snyder <msnyder@vmware.com> | 2009-12-20 19:09:37 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2009-12-20 19:09:37 +0000 |
commit | 6c10c06bd8fd036dd8da1232acc51bbe22086d93 (patch) | |
tree | 52a9ff99435f1d776b50b1d108fd7ff02434cb6c /gdb/amd64-tdep.c | |
parent | d53a7b30c1996081dfffc6c33ecd18ac42a58610 (diff) | |
download | gdb-6c10c06bd8fd036dd8da1232acc51bbe22086d93.zip gdb-6c10c06bd8fd036dd8da1232acc51bbe22086d93.tar.gz gdb-6c10c06bd8fd036dd8da1232acc51bbe22086d93.tar.bz2 |
2009-12-20 Michael Snyder <msnyder@vmware.com>
* amd64-tdep.c (amd64_epilogue_frame_cache): Fix buf size.
Diffstat (limited to 'gdb/amd64-tdep.c')
-rw-r--r-- | gdb/amd64-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/amd64-tdep.c b/gdb/amd64-tdep.c index b47c4c3..7bb358b 100644 --- a/gdb/amd64-tdep.c +++ b/gdb/amd64-tdep.c @@ -1928,7 +1928,7 @@ amd64_epilogue_frame_cache (struct frame_info *this_frame, void **this_cache) struct gdbarch *gdbarch = get_frame_arch (this_frame); enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); struct amd64_frame_cache *cache; - gdb_byte buf[4]; + gdb_byte buf[8]; if (*this_cache) return *this_cache; |