Skip to content

Commit b0af4cb

Browse files
committed
C++: Fix Code Scanning alert.
1 parent 6d5de66 commit b0af4cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/ql/src/experimental/Security/CWE/CWE-193/InvalidPointerDeref.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class AllocToInvalidPointerConf extends ProductFlow::Configuration {
133133
node = any(DataFlow::SsaPhiNode phi).getAnInput(true)
134134
}
135135

136-
override predicate isBarrierIn1(DataFlow::Node node) { isSourcePair(node, _, _, _) }
136+
override predicate isBarrierIn1(DataFlow::Node node) { this.isSourcePair(node, _, _, _) }
137137
}
138138

139139
pragma[nomagic]

0 commit comments

Comments
 (0)