mirror of
https://github.com/github/codeql.git
synced 2026-04-30 03:05:15 +02:00
C++: Encode string value of data flow nodes in ExecState
This commit is contained in:
@@ -75,8 +75,9 @@ class ExecState extends DataFlow::FlowState {
|
||||
DataFlow::Node snd;
|
||||
|
||||
ExecState() {
|
||||
this = "ExecState (" + fst.getLocation() + ", " + snd.getLocation() + ")" and
|
||||
interestingConcatenation(fst, snd)
|
||||
this =
|
||||
"ExecState (" + fst.getLocation() + " | " + fst + ", " + snd.getLocation() + " | " + snd + ")" and
|
||||
interestingConcatenation(fst, snd)
|
||||
}
|
||||
|
||||
DataFlow::Node getFstNode() { result = fst }
|
||||
|
||||
Reference in New Issue
Block a user