File tree Expand file tree Collapse file tree
cpp/ql/test/library-tests/dataflow/taint-tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -102,15 +102,15 @@ void test_CA2AEX() {
102102 {
103103 LPSTR x = indirect_source<char >();
104104 CA2AEX<128 > a (x);
105- sink (static_cast <LPSTR>(a)); // $ MISSING: ir
105+ sink (static_cast <LPSTR>(a)); // $ ir
106106 sink (a.m_psz ); // $ ir
107107 sink (a.m_szBuffer ); // $ ir
108108 }
109109
110110 {
111111 LPSTR x = indirect_source<char >();
112112 CA2AEX<128 > a (x, 0 );
113- sink (static_cast <LPSTR>(a)); // $ MISSING: ir
113+ sink (static_cast <LPSTR>(a)); // $ ir
114114 sink (a.m_psz ); // $ ir
115115 sink (a.m_szBuffer ); // $ ir
116116 }
@@ -129,13 +129,13 @@ void test_CA2CAEX() {
129129 LPCSTR x = indirect_source<char >();
130130 {
131131 CA2CAEX<128 > a (x);
132- sink (static_cast <LPCSTR>(a)); // $ MISSING: ir
132+ sink (static_cast <LPCSTR>(a)); // $ ir
133133 sink (a.m_psz ); // $ ir
134134 sink (a.m_psz ); // $ ir
135135 }
136136 {
137137 CA2CAEX<128 > a (x, 0 );
138- sink (static_cast <LPCSTR>(a)); // $ MISSING: ir
138+ sink (static_cast <LPCSTR>(a)); // $ ir
139139 sink (a.m_psz ); // $ ir
140140 sink (a.m_psz ); // $ ir
141141 }
@@ -155,13 +155,13 @@ void test_CA2WEX() {
155155 LPCSTR x = indirect_source<char >();
156156 {
157157 CA2WEX<128 > a (x);
158- sink (static_cast <LPWSTR>(a)); // $ MISSING: ir
158+ sink (static_cast <LPWSTR>(a)); // $ ir
159159 sink (a.m_psz ); // $ ir
160160 sink (a.m_psz ); // $ ir
161161 }
162162 {
163163 CA2WEX<128 > a (x, 0 );
164- sink (static_cast <LPWSTR>(a)); // $ MISSING: ir
164+ sink (static_cast <LPWSTR>(a)); // $ ir
165165 sink (a.m_psz ); // $ ir
166166 sink (a.m_psz ); // $ ir
167167 }
You can’t perform that action at this time.
0 commit comments