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
Hello, I wanted to report a bug on v2 where you guys can hopefully fix it. Every time I try to decompile certain bytecode files, it just gives me a bunch of "Index was outside the bounds of the array." exceptions and never seems to finish.
It comes from the LiftBasicBlock function and more specifically this line of code: var instruction = Instructions[pc];
The error is caused by the pc value being less than 0 for some weird reason. All I did to my v2 fork is update the opcodes table.
Maybe you guys can fix this, thanks.
The text was updated successfully, but these errors were encountered:
Hello, I wanted to report a bug on v2 where you guys can hopefully fix it. Every time I try to decompile certain bytecode files, it just gives me a bunch of "Index was outside the bounds of the array." exceptions and never seems to finish.
It comes from the LiftBasicBlock function and more specifically this line of code:
var instruction = Instructions[pc];
The error is caused by the pc value being less than 0 for some weird reason. All I did to my v2 fork is update the opcodes table.
Maybe you guys can fix this, thanks.
The text was updated successfully, but these errors were encountered: