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
4
4
private import semmle.code.java.dataflow.ExternalFlow
5
5
private import semmle.code.java.dataflow.FlowSteps
6
6
private 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
8
8
9
9
/** The class `android.content.Intent`. */
10
10
class TypeIntent extends Class {
@@ -269,7 +269,7 @@ private predicate reaches(Expr src, Argument arg) {
269
269
any ( StartComponentMethodAccess ma ) .getIntentArg ( ) = arg and
270
270
src = arg
271
271
or
272
- exists ( Expr mid , BaseSSA :: BaseSsaVariable ssa , BaseSSA :: BaseSsaUpdate upd |
272
+ exists ( Expr mid , BaseSsa :: BaseSsaVariable ssa , BaseSsa :: BaseSsaUpdate upd |
273
273
reaches ( mid , arg ) and
274
274
mid = ssa .getAUse ( ) and
275
275
upd = ssa .getAnUltimateLocalDefinition ( ) and
@@ -383,7 +383,7 @@ private class ActivityIntentSyntheticGlobal extends SummaryComponent::SyntheticG
383
383
384
384
private class RequiredComponentStackForStartActivities extends RequiredSummaryComponentStack {
385
385
override predicate required ( SummaryComponent head , SummaryComponentStack tail ) {
386
- head = SummaryComponent:: element ( ) and
386
+ head = SummaryComponent:: arrayElement ( ) and
387
387
tail = SummaryComponentStack:: argument ( 0 )
388
388
}
389
389
}
You can’t perform that action at this time.
0 commit comments