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.
ExecState
1 parent e05227d commit b79eb6dCopy full SHA for b79eb6d
cpp/ql/src/Security/CWE/CWE-078/ExecTainted.ql
@@ -75,8 +75,9 @@ class ExecState extends DataFlow::FlowState {
75
DataFlow::Node snd;
76
77
ExecState() {
78
- this = "ExecState (" + fst.getLocation() + ", " + snd.getLocation() + ")" and
79
- interestingConcatenation(fst, snd)
+ this =
+ "ExecState (" + fst.getLocation() + " | " + fst + ", " + snd.getLocation() + " | " + snd + ")" and
80
+ interestingConcatenation(fst, snd)
81
}
82
83
DataFlow::Node getFstNode() { result = fst }
0 commit comments