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 1edc6b7 commit b1073ddCopy full SHA for b1073dd
java/ql/lib/semmle/code/java/security/TaintedPermissionsCheckQuery.qll
@@ -63,8 +63,9 @@ module TaintedPermissionsCheckFlowConfig implements DataFlow::ConfigSig {
63
predicate observeDiffInformedIncrementalMode() { any() }
64
65
Location getASelectedSinkLocation(DataFlow::Node sink) {
66
- exists(PermissionsConstruction p |
67
- sink.asExpr() = p.getInput() and
+ exists(PermissionsConstruction p | sink.asExpr() = p.getInput() |
+ result = sink.getLocation()
68
+ or
69
result = p.getLocation()
70
)
71
}
0 commit comments