From ae9d9b966041efceaa9a4a58bb00b230d38bb2c8 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Tue, 14 Aug 2001 20:05:48 +0000 Subject: * top.c (SIGSETJMP): Protect env argument with parentheses. (SIGLONGJMP): Protect env argument with parentheses. --- gdb/top.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gdb/top.c') diff --git a/gdb/top.c b/gdb/top.c index 061bef8..33a853b 100644 --- a/gdb/top.c +++ b/gdb/top.c @@ -299,12 +299,12 @@ NORETURN void (*error_hook) (void) ATTR_NORETURN; directly. */ #if defined(HAVE_SIGSETJMP) #define SIGJMP_BUF sigjmp_buf -#define SIGSETJMP(buf) sigsetjmp(buf, 1) -#define SIGLONGJMP(buf,val) siglongjmp(buf,val) +#define SIGSETJMP(buf) sigsetjmp((buf), 1) +#define SIGLONGJMP(buf,val) siglongjmp((buf), (val)) #else #define SIGJMP_BUF jmp_buf #define SIGSETJMP(buf) setjmp(buf) -#define SIGLONGJMP(buf,val) longjmp(buf,val) +#define SIGLONGJMP(buf,val) longjmp((buf), (val)) #endif /* Where to go for return_to_top_level. */ -- cgit v1.1