We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee59e4a commit 5041f59Copy full SHA for 5041f59
cpp/ql/test/library-tests/dataflow/fields/struct_init.c
@@ -12,7 +12,7 @@ struct Outer {
12
};
13
14
void absink(struct AB *ab) {
15
- sink(ab->a); // flow x3 [NOT DETECTED]
+ sink(ab->a); // flow (three paths)
16
sink(ab->b); // no flow
17
}
18
@@ -30,7 +30,7 @@ int struct_init(void) {
30
31
sink(outer.nestedAB.a); // flow
32
sink(outer.nestedAB.b); // no flow
33
- sink(outer.pointerAB->a); // flow [NOT DETECTED]
+ sink(outer.pointerAB->a); // flow
34
sink(outer.pointerAB->b); // no flow
35
36
absink(&outer.nestedAB);
0 commit comments