Skip to content

Commit

Permalink
fix syntax errors introduced
Browse files Browse the repository at this point in the history
  • Loading branch information
ropwareJB committed Feb 8, 2024
1 parent df915dc commit c92c212
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shared/dataflowstack/codeql/dataflowstack/DataFlowStack.qll
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ module DataFlowStackMake<DF::InputSig Lang>{
FlowStackFrame getASucceedingTerminalStateFrame(){
result = this.getChildStackFrame() and
// There are no other direct children that are further in the flow
not result.getASuccessor+() = this.getChildStackFrame() and
not result.getASuccessor+() = this.getChildStackFrame()
}

/**
Expand Down Expand Up @@ -260,7 +260,7 @@ module DataFlowStackMake<DF::InputSig Lang>{
* Unpacks the CallFrame associated with this FlowStackFrame
*/
CallFrame getCallFrame(){
this = TFlowStackFrame(_, result) and
this = TFlowStackFrame(_, result)
}
}

Expand Down

0 comments on commit c92c212

Please sign in to comment.