File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
java/ql/lib/semmle/code/java/frameworks/android Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ private import semmle.code.java.dataflow.DataFlow
44private import semmle.code.java.dataflow.ExternalFlow
55private import semmle.code.java.dataflow.FlowSteps
66private import semmle.code.java.dataflow.FlowSummary
7- private import semmle.code.java.dataflow.internal.BaseSSA as BaseSSA
7+ private import semmle.code.java.dataflow.internal.BaseSSA as BaseSsa
88
99/** The class `android.content.Intent`. */
1010class TypeIntent extends Class {
@@ -269,7 +269,7 @@ private predicate reaches(Expr src, Argument arg) {
269269 any ( StartComponentMethodAccess ma ) .getIntentArg ( ) = arg and
270270 src = arg
271271 or
272- exists ( Expr mid , BaseSSA :: BaseSsaVariable ssa , BaseSSA :: BaseSsaUpdate upd |
272+ exists ( Expr mid , BaseSsa :: BaseSsaVariable ssa , BaseSsa :: BaseSsaUpdate upd |
273273 reaches ( mid , arg ) and
274274 mid = ssa .getAUse ( ) and
275275 upd = ssa .getAnUltimateLocalDefinition ( ) and
@@ -383,7 +383,7 @@ private class ActivityIntentSyntheticGlobal extends SummaryComponent::SyntheticG
383383
384384private class RequiredComponentStackForStartActivities extends RequiredSummaryComponentStack {
385385 override predicate required ( SummaryComponent head , SummaryComponentStack tail ) {
386- head = SummaryComponent:: element ( ) and
386+ head = SummaryComponent:: arrayElement ( ) and
387387 tail = SummaryComponentStack:: argument ( 0 )
388388 }
389389}
You can’t perform that action at this time.
0 commit comments