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 df915dc commit c92c212Copy full SHA for c92c212
shared/dataflowstack/codeql/dataflowstack/DataFlowStack.qll
@@ -211,7 +211,7 @@ module DataFlowStackMake<DF::InputSig Lang>{
211
FlowStackFrame getASucceedingTerminalStateFrame(){
212
result = this.getChildStackFrame() and
213
// There are no other direct children that are further in the flow
214
- not result.getASuccessor+() = this.getChildStackFrame() and
+ not result.getASuccessor+() = this.getChildStackFrame()
215
}
216
217
/**
@@ -260,7 +260,7 @@ module DataFlowStackMake<DF::InputSig Lang>{
260
* Unpacks the CallFrame associated with this FlowStackFrame
261
*/
262
CallFrame getCallFrame(){
263
- this = TFlowStackFrame(_, result) and
+ this = TFlowStackFrame(_, result)
264
265
266
0 commit comments