diff options
Diffstat (limited to 'gdb/amd64-fbsd-tdep.c')
-rw-r--r-- | gdb/amd64-fbsd-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/amd64-fbsd-tdep.c b/gdb/amd64-fbsd-tdep.c index 6a7000e..2894313 100644 --- a/gdb/amd64-fbsd-tdep.c +++ b/gdb/amd64-fbsd-tdep.c @@ -52,7 +52,7 @@ amd64fbsd_sigtramp_p (struct frame_info *this_frame) CORE_ADDR pc = get_frame_pc (this_frame); gdb_byte buf[sizeof amd64fbsd_sigtramp_code]; - if (!safe_frame_unwind_memory (this_frame, pc, buf, sizeof buf)) + if (!safe_frame_unwind_memory (this_frame, pc, buf)) return 0; if (memcmp (buf, amd64fbsd_sigtramp_code, sizeof amd64fbsd_sigtramp_code) != 0) |