diff options
Diffstat (limited to 'gdb/arm-tdep.c')
-rw-r--r-- | gdb/arm-tdep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index a9abf2d..9dfbf49 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -1296,7 +1296,8 @@ arm_skip_stack_protector(CORE_ADDR pc, struct gdbarch *gdbarch) instruction sequence is not for stack protector. If symbol is removed, we conservatively think this sequence is for stack protector. */ if (stack_chk_guard - && strcmp (SYMBOL_LINKAGE_NAME(stack_chk_guard), "__stack_chk_guard")) + && strncmp (SYMBOL_LINKAGE_NAME (stack_chk_guard), "__stack_chk_guard", + strlen ("__stack_chk_guard")) != 0) return pc; if (is_thumb) |