From adb0b2270855e175286388a1efeb23eef6e349d6 Mon Sep 17 00:00:00 2001 From: Jason Thorpe Date: Mon, 1 Apr 2002 18:31:46 +0000 Subject: [PATCH] 2002-04-01 Nathan Williams * elf.c (elfcore_netbsd_get_lwpid): Fix off-by-one erro which caused the returned LWP ID to always be 0. --- bfd/ChangeLog | 5 +++++ bfd/elf.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 97a5872989..d7f157c144 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2002-04-01 Nathan Williams + + * elf.c (elfcore_netbsd_get_lwpid): Fix off-by-one error + which caused the returned LWP ID to always be 0. + 2002-04-01 Richard Henderson * elf32-sparc.c (WILL_CALL_FINISH_DYNAMIC_SYMBOL): New. diff --git a/bfd/elf.c b/bfd/elf.c index 3cc0dd5f18..0def9618b2 100644 --- a/bfd/elf.c +++ b/bfd/elf.c @@ -6441,7 +6441,7 @@ elfcore_netbsd_get_lwpid (note, lwpidp) cp = strchr (note->namedata, '@'); if (cp != NULL) { - *lwpidp = atoi(cp); + *lwpidp = atoi(cp + 1); return true; } return false; -- 2.11.0