跳转控制R-1-5-2强制

禁止 setjmp/longjmp

setjmp/longjmp
test.c
1#include <setjmp.h>
2
3jmp_buf jump_buffer;
4
5void do_jump()
6{
7 longjmp(jump_buffer, 1);
禁止 setjmp/longjmp [gjb8114-r-1-5-2]
8}
9
10void foo(void)
11{
12 if (setjmp(jump_buffer) == 0)
禁止 setjmp/longjmp [gjb8114-r-1-5-2]
13 {
14 do_jump();
15 }
16 else
17 {
18 }
19}