mirror of
https://github.com/revanced/smali.git
synced 2025-05-19 07:27:06 +02:00
wasn't propogating deadness in all cases
git-svn-id: https://smali.googlecode.com/svn/trunk@462 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
parent
a37715b6ec
commit
dbaa44be6c
@ -298,6 +298,7 @@ public class DeodexUtil {
|
||||
//it, and let the caller choose which "default" method to call in this case
|
||||
if (regType == RegisterType.Null) {
|
||||
i.fixedInstruction = new UnresolvedNullReference(i.instruction, registerNum);
|
||||
i.propogateDeadness();
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -360,6 +361,7 @@ public class DeodexUtil {
|
||||
//it, and let the caller choose which "default" method to call in this case
|
||||
if (regType == RegisterType.Null) {
|
||||
i.fixedInstruction = new UnresolvedNullReference(i.instruction, registerNum);
|
||||
i.propogateDeadness();
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -401,6 +403,7 @@ public class DeodexUtil {
|
||||
//it, and let the caller choose which "default" method to call in this case
|
||||
if (regType == RegisterType.Null) {
|
||||
i.fixedInstruction = new UnresolvedNullReference(i.instruction, registerNum);
|
||||
i.propogateDeadness();
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -637,6 +640,7 @@ public class DeodexUtil {
|
||||
//and let the caller choose which "default" method to call in this case
|
||||
if (regType == RegisterType.Null) {
|
||||
i.fixedInstruction = new UnresolvedNullReference(i.instruction, registerNum);
|
||||
i.propogateDeadness();
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -731,6 +735,7 @@ public class DeodexUtil {
|
||||
//and let the caller choose which "default" method to call in this case
|
||||
if (regType == RegisterType.Null) {
|
||||
i.fixedInstruction = new UnresolvedNullReference(i.instruction, registerNum);
|
||||
i.propogateDeadness();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user