Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6369006 commit ce02de4Copy full SHA for ce02de4
1 file changed
cpp/ql/src/Security/CWE/CWE-497/PotentiallyExposedSystemData.ql
@@ -42,8 +42,8 @@ class PotentiallyExposedSystemDataConfiguration extends TaintTracking::Configura
42
exists(OutputWrite ow, Expr child | child = ow.getASource().getAChild*() |
43
// Most sinks receive a pointer as an argument (for example `printf`),
44
// and we use an indirect sink for those.
45
- // However, some sinks (for example `puts`) receive receive a single
46
- // character as an argument. For those we have to use a direct sink.
+ // However, some sinks (for example `puts`) receive a single character
+ // as an argument. For those we have to use a direct sink.
47
if
48
child.getUnspecifiedType() instanceof PointerType or
49
child.getUnspecifiedType() instanceof ArrayType
0 commit comments