blob: d151ef0c363c37bf015988095759a1b0cd7559f4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
test15.c: In function 'func1':
test15.c:7:15: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 400;
^
test15.c:11:15: warning: Using parameter 'ptr1' without checking for null pointer
*ptr1 = 100;
^
test15.c:13:15: warning: Using parameter 'ptr1' without checking for null pointer
*ptr1 = 200;
^
test15.c:14:11: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 300;
^
test15.c: In function 'func2':
test15.c:21:15: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 400;
^
test15.c:26:15: warning: Using parameter 'ptr1' without checking for null pointer
*ptr1 = 100;
^
test15.c:29:11: warning: Using parameter 'ptr1' without checking for null pointer
*ptr1 = 200;
^
test15.c:30:11: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 300;
^
test15.c: In function 'func3':
test15.c:46:11: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 300;
^
test15.c: In function 'func5':
test15.c:77:11: warning: Using parameter 'ptr1' without checking for null pointer
*ptr1 = 200;
^
test15.c:78:11: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 300;
^
test15.c: In function 'func7':
test15.c:101:15: warning: Using parameter 'ptr1' without checking for null pointer
*ptr1 = 100;
^
test15.c:102:15: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 200;
^
test15.c:109:11: warning: Using parameter 'ptr1' without checking for null pointer
*ptr1 = 300;
^
test15.c:110:11: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 400;
^
test15.c: In function 'func8':
test15.c:123:15: warning: Using parameter 'ptr1' without checking for null pointer
*ptr1 = 300;
^
test15.c:124:15: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 400;
^
test15.c: In function 'func9':
test15.c:136:15: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 100;
^
test15.c:141:15: warning: Using parameter 'ptr1' without checking for null pointer
*ptr1 = 200;
^
test15.c: In function 'func10':
test15.c:159:15: warning: Using parameter 'ptr1' without checking for null pointer
*ptr1 = 300;
^
test15.c:160:15: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 400;
^
test15.c:163:11: warning: Using parameter 'ptr1' without checking for null pointer
*ptr1 = 500;
^
test15.c:164:11: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 600;
^
test15.c: In function 'func11':
test15.c:172:15: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 200;
^
test15.c:177:15: warning: Using parameter 'ptr1' without checking for null pointer
*ptr1 = 300;
^
test15.c:178:15: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 400;
^
test15.c:181:11: warning: Using parameter 'ptr1' without checking for null pointer
*ptr1 = 500;
^
test15.c:182:11: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 600;
^
test15.c: In function 'func12':
test15.c:189:15: warning: Using parameter 'ptr1' without checking for null pointer
*ptr1 = 100;
^
test15.c:190:15: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 200;
^
test15.c:196:15: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 400;
^
test15.c:200:11: warning: Using parameter 'ptr2' without checking for null pointer
*ptr2 = 600;
^
|