Skip to content

Commit

Permalink
ignore malformed debug line numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
REAndroid committed Feb 12, 2024
1 parent 20b80a3 commit e1ffcee
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,10 @@ private List<MethodItem> clearDuplicateLineNumbers(List<MethodItem> methodItems)
continue;
}
lineNoItem = true;
LineNumberMethodItem line = (LineNumberMethodItem) methodItem;
if((line.getLineNumber() & 0xffff0000) != 0){
continue;
}
}else {
lineNoItem = false;
}
Expand Down

0 comments on commit e1ffcee

Please sign in to comment.