mirror of
https://github.com/revanced/smali.git
synced 2025-05-11 11:54:29 +02:00
Use the correct string for the local signature
This commit is contained in:
parent
710ef75b81
commit
1e325b6134
@ -226,7 +226,7 @@ public class DebugInfoPool {
|
|||||||
public void emitStartLocal(@Nonnull StartLocal startLocal) throws IOException {
|
public void emitStartLocal(@Nonnull StartLocal startLocal) throws IOException {
|
||||||
int nameIndex = dexFile.stringPool.getIndexNullable(startLocal.getName());
|
int nameIndex = dexFile.stringPool.getIndexNullable(startLocal.getName());
|
||||||
int typeIndex = dexFile.typePool.getIndexNullable(startLocal.getType());
|
int typeIndex = dexFile.typePool.getIndexNullable(startLocal.getType());
|
||||||
int signatureIndex = dexFile.stringPool.getIndexNullable(startLocal.getName());
|
int signatureIndex = dexFile.stringPool.getIndexNullable(startLocal.getSignature());
|
||||||
emitAdvancePC(startLocal.getCodeAddress());
|
emitAdvancePC(startLocal.getCodeAddress());
|
||||||
if (signatureIndex == -1) {
|
if (signatureIndex == -1) {
|
||||||
writer.write(3);
|
writer.write(3);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user