Skip to content

Commit

Permalink
Fix for issue skylot#1739
Browse files Browse the repository at this point in the history
  • Loading branch information
jmlitfi committed Dec 11, 2022
1 parent cdc844a commit bdda26d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ private boolean formatMthParamInfo(IMethodData mth, SmaliWriter smali, ICodeRead
IDebugInfo dbgInfo = codeReader.getDebugInfo();
if (dbgInfo != null) {
for (ILocalVar var : dbgInfo.getLocalVars()) {
if (var.getStartOffset() == -1) {
if (var.getRegNum() == regNum) {
int i = writeParamInfo(smali, line, regNum, paramStart, var.getName(), var.getType());
regNum += i;
paramStart += i;
Expand Down

0 comments on commit bdda26d

Please sign in to comment.