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
There is a small logic issue in recompileExceptionClearForArm as when there is end of block, and relocator.readOne(); returns 0, it will throw exception, while it should break
do {
const offset = relocator.readOne();
if (offset === 0) {
throw new Error('Unexpected end of block');
}
it should be:
do {
const offset = relocator.readOne();
if (offset === 0) {
break;
}
As same logic is followed in recompileExceptionClearForArm64
The text was updated successfully, but these errors were encountered:
There is a small logic issue in recompileExceptionClearForArm as when there is end of block, and
relocator.readOne();
returns 0, it will throw exception, while it should breakit should be:
As same logic is followed in recompileExceptionClearForArm64
The text was updated successfully, but these errors were encountered: