diff options
author | Roland McGrath <roland@gnu.org> | 2005-12-21 21:36:24 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-12-21 21:36:24 +0000 |
commit | e8ebf3f2dca6a7101448968be77aab9de16f131a (patch) | |
tree | 5ee43f60eaa47585c78894f495c4f7ef4ecc6dd7 | |
parent | 934b22a4f69afc5ca4613c187ab1bf28d7743683 (diff) | |
download | glibc-e8ebf3f2dca6a7101448968be77aab9de16f131a.tar.gz glibc-e8ebf3f2dca6a7101448968be77aab9de16f131a.tar.xz glibc-e8ebf3f2dca6a7101448968be77aab9de16f131a.zip |
* sysdeps/generic/unwind-dw2.c (extract_cie_info): Add a cast.
* elf/dl-error.c (_dl_signal_error): Use .__jmpbuf in __longjmp call.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | elf/dl-error.c | 2 | ||||
-rw-r--r-- | sysdeps/generic/unwind-dw2.c | 6 |
3 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index 28c5e4a349..9bb15bac6d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2005-12-21 Roland McGrath <roland@redhat.com> + * sysdeps/generic/unwind-dw2.c (extract_cie_info): Add a cast. + + * elf/dl-error.c (_dl_signal_error): Use .__jmpbuf in __longjmp call. + * csu/dso_handle.c (__dso_handle): Add const to pointer type too. 2005-12-21 Ulrich Drepper <drepper@redhat.com> diff --git a/elf/dl-error.c b/elf/dl-error.c index b5374e949c..79ebaaf01b 100644 --- a/elf/dl-error.c +++ b/elf/dl-error.c @@ -113,7 +113,7 @@ _dl_signal_error (int errcode, const char *objname, const char *occation, lcatch->malloced = false; } /* We do not restore the signal mask because none was saved. */ - __longjmp (lcatch->env, errcode ?: -1); + __longjmp (lcatch->env[0].__jmpbuf, errcode ?: -1); } else { diff --git a/sysdeps/generic/unwind-dw2.c b/sysdeps/generic/unwind-dw2.c index 619250e614..301b53176e 100644 --- a/sysdeps/generic/unwind-dw2.c +++ b/sysdeps/generic/unwind-dw2.c @@ -1,6 +1,6 @@ /* DWARF2 exception handling and frame unwind runtime interface routines. - Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003 - Free Software Foundation, Inc. + Copyright (C) 1997,1998,1999,2000,2001,2002,2003,2005 + Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -256,7 +256,7 @@ extract_cie_info (struct dwarf_cie *cie, struct _Unwind_Context *context, _Unwind_FrameState *fs) { const unsigned char *aug = cie->augmentation; - const unsigned char *p = aug + strlen (aug) + 1; + const unsigned char *p = aug + strlen ((const char *) aug) + 1; const unsigned char *ret = NULL; _Unwind_Word utmp; |