summaryrefslogtreecommitdiff
path: root/test/test11-04.txt
blob: c710a41f2199e147a273bd97d5144efde73c4325 (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
test11.cpp: In member function 'void Object1::func2(Data1*, Data1*)':
test11.cpp:29:24: warning: Using parameter 'ptr1' without checking for null pointer
         ptr1->val = 300;
                        ^
test11.cpp:29:24: warning: Using field 'ptr1' without checking for null pointer
test11.cpp: In member function 'void Object1::func3(Data1*, Data1*)':
test11.cpp:34:31: warning: Using field 'ptr1' without checking for null pointer
         if (ptr1 || ptr1->val == 100)
                               ^
test11.cpp:39:24: warning: Using parameter 'ptr1' without checking for null pointer
         ptr1->val = 200;
                        ^
test11.cpp:39:24: warning: Using field 'ptr1' without checking for null pointer
test11.cpp: In member function 'void Object1::func4(Data1*, Data1*)':
test11.cpp:44:32: warning: Using field 'ptr1' without checking for null pointer
         if (!ptr1 && ptr1->val == 100)
                                ^
test11.cpp:49:24: warning: Using parameter 'ptr1' without checking for null pointer
         ptr1->val = 200;
                        ^
test11.cpp:49:24: warning: Using field 'ptr1' without checking for null pointer
test11.cpp: In member function 'void Object1::func6(Data1*, Data1*)':
test11.cpp:70:24: warning: Using parameter 'ptr1' without checking for null pointer
         ptr1->val = 300;
                        ^
test11.cpp:70:24: warning: Using field 'ptr1' without checking for null pointer
test11.cpp:71:24: warning: Using parameter 'ptr2' without checking for null pointer
         ptr2->val = 400;
                        ^
test11.cpp:71:24: warning: Using field 'ptr2' without checking for null pointer