File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ The following changes in version 1.25 affect C/C++ analysis in all applications.
18
18
19
19
* The data-flow library has been improved, which affects most security queries by potentially
20
20
adding more results. Flow through functions now takes nested field reads/writes into account.
21
- For example, the library is able to track flow from ` " taint" ` to ` sink() ` via the method
21
+ For example, the library is able to track flow from ` taint() ` to ` sink() ` via the method
22
22
` getf2f1() ` in
23
23
``` c
24
24
struct C {
@@ -27,15 +27,15 @@ The following changes in version 1.25 affect C/C++ analysis in all applications.
27
27
28
28
struct C2
29
29
{
30
- C f2;
30
+ C f2;
31
31
32
32
int getf2f1() {
33
33
return f2.f1; // Nested field read
34
34
}
35
35
36
36
void m() {
37
37
f2.f1 = taint();
38
- sink (getf2f1 ()); // NEW: " taint" reaches here
38
+ sink (getf2f1 ()); // NEW: taint() reaches here
39
39
}
40
40
};
41
- ```
41
+ ```
You can’t perform that action at this time.
0 commit comments