跳转控制R-1-5-2强制
禁止 setjmp/longjmp
setjmp/longjmp
test.c
1#include <setjmp.h>23jmp_buf jump_buffer;45void do_jump()6{7 longjmp(jump_buffer, 1);禁止 setjmp/longjmp [gjb8114-r-1-5-2]8}910void foo(void)11{12 if (setjmp(jump_buffer) == 0)禁止 setjmp/longjmp [gjb8114-r-1-5-2]13 {14 do_jump();15 }16 else17 {18 }19}