We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7e5dc2 commit 527b537Copy full SHA for 527b537
cpp/ql/test/library-tests/dataflow/fields/clearning.cpp
@@ -17,14 +17,14 @@ void test()
17
S s;
18
**s.x = user_input();
19
*s.x = 0;
20
- sink(**s.x); // $ clean, as *s.x was overwritten and that contains the tainted **s.x
+ sink(**s.x); // clean, as *s.x was overwritten and that contains the tainted **s.x
21
}
22
23
{
24
25
26
**s.x = 0;
27
- sink(**s.x); // $ clean, as **s.x was overwritten and tainted
+ sink(**s.x); // clean, as **s.x was overwritten and tainted
28
29
30
0 commit comments