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.
2 parents 4fd0ada + d22632e commit 0846d1fCopy full SHA for 0846d1f
java/ql/lib/semmle/code/java/dataflow/internal/TaintTrackingUtil.qll
@@ -92,8 +92,6 @@ private module Cached {
92
)
93
or
94
FlowSummaryImpl::Private::Steps::summaryLocalStep(src, sink, false)
95
- or
96
- entrypointFieldStep(src, sink)
97
}
98
99
/**
@@ -103,6 +101,7 @@ private module Cached {
103
101
cached
104
102
predicate defaultAdditionalTaintStep(DataFlow::Node src, DataFlow::Node sink) {
105
localAdditionalTaintStep(src, sink) or
+ entrypointFieldStep(src, sink) or
106
any(AdditionalTaintStep a).step(src, sink)
107
108
0 commit comments