mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-4202 corrected ELF PT_NOTE processing issue
This commit is contained in:
parent
86da74d01a
commit
68dc53768c
2 changed files with 58 additions and 38 deletions
|
@ -38,7 +38,7 @@ public class Relocation {
|
|||
UNKNOWN(0, true),
|
||||
|
||||
/**
|
||||
* Relocation has be intentionally skipped and should not be treated as a failure.
|
||||
* Relocation has been intentionally skipped and should not be treated as a failure.
|
||||
*/
|
||||
SKIPPED(1, false),
|
||||
|
||||
|
@ -105,8 +105,7 @@ public class Relocation {
|
|||
return s;
|
||||
}
|
||||
}
|
||||
throw new IllegalArgumentException(
|
||||
"Undefined Status value: " + value);
|
||||
throw new IllegalArgumentException("Undefined Status value: " + value);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue