GP-0 fix COFF relocation error handler

This commit is contained in:
ghidra1 2024-03-12 17:58:49 -04:00
parent 8746542a86
commit f1bcb3151f

View file

@ -701,7 +701,13 @@ public class CoffLoader extends AbstractLibrarySupportLoader {
++failureCount;
failedAddr = address;
handleRelocationError(program, address, relocationType,
"Unsupported COFF relocation type", null);
"unsupported type", null);
}
else if (status == Status.FAILURE) {
++failureCount;
failedAddr = address;
handleRelocationError(program, address, relocationType,
"unknown reason", null);
}
}
}