You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DexDebugInfoReader.java:
////////////////////////////////////////////////
.....
case DBG_END_LOCAL: {
int regNum = (int) in.readULeb128();
LocalVariable v = variableList[regNum];
codeReader.order(pcOffset);
v.end = pcOffset;
// System.out.println(v.start + " - " + pcOffset);
dcv.visitLocalVariable(v.name, v.type, v.signature, codeReader.labels.get(v.start),
codeReader.labels.get(pcOffset), v.reg);
}
.....
////////////////////////////////////////////////
v could be NULL, so accessing "end" field of v would cause crash. There is
"NULL handle " in v0.0.7 which no crash happens to my dex file.
Original issue reported on code.google.com by [email protected] on 22 Sep 2013 at 8:58
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 22 Sep 2013 at 8:58The text was updated successfully, but these errors were encountered: