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 eac1a4c commit 8224ef6Copy full SHA for 8224ef6
java/ql/lib/semmle/code/java/security/InsecureTrustManagerQuery.qll
@@ -18,6 +18,17 @@ module InsecureTrustManagerConfig implements DataFlow::ConfigSig {
18
node.getType() instanceof Array and
19
c instanceof DataFlow::ArrayContent
20
}
21
+
22
+ predicate observeDiffInformedIncrementalMode() { any() }
23
24
+ Location getASelectedSourceLocation(DataFlow::Node source) {
25
+ isSource(source) and
26
+ (
27
+ result = source.getLocation()
28
+ or
29
+ result = source.asExpr().(ClassInstanceExpr).getConstructedType().getLocation()
30
+ )
31
+ }
32
33
34
module InsecureTrustManagerFlow = DataFlow::Global<InsecureTrustManagerConfig>;
0 commit comments