]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Use sigjmp_buf with sig{set,long}jmp, not jmp_buf
authorTom Hughes <tom@compton.nu>
Mon, 17 Feb 2014 22:32:15 +0000 (22:32 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 17 Feb 2014 22:32:15 +0000 (22:32 +0000)
Patch from Ivo Raisr on BZ#331257

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13812

NEWS
none/tests/faultstatus.c

diff --git a/NEWS b/NEWS
index 85bdb7c6776f3ebf79a53c071ec351da9c658ac6..a520a3d351e18ae7867378fac6c9272457d1e1f1 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -52,6 +52,7 @@ where XXXXXX is the bug number as listed below.
 330469  Add clock_adjtime syscall support
 330939  Support for AMD's syscall instruction on x86
 330941  Typo in PRE(poll) syscall wrapper
+331257  Fix type of jump buffer in test none/tests/faultstatus
 n-i-bz  Fix KVM_CREATE_IRQCHIP ioctl handling
 
 Release 3.9.0 (31 October 2013)
index 230865cc26a9dc1954f03bb38430566b236772ea..ee30ab1b46158ee95b9508b1016a1a1ae0b15c05 100644 (file)
@@ -41,7 +41,7 @@ static const struct test *cur_test;
 
 static int zero();
 
-static jmp_buf escape;
+static sigjmp_buf escape;
 
 #define BADADDR        ((int *)0x1234)