mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GT-3112 - PDB Universal Reader/Analyzer - 120 commits
This commit is contained in:
parent
71ed2524ce
commit
d09a5740e0
1 changed files with 2 additions and 3 deletions
|
@ -16,6 +16,7 @@
|
|||
package ghidra.app.util.bin.format.pdb2.pdbreader.msf;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.fail;
|
||||
|
||||
import java.io.*;
|
||||
import java.util.*;
|
||||
|
@ -273,9 +274,7 @@ public class MsfReaderUnitTest extends AbstractGenericTest {
|
|||
|
||||
void reservePage(int pageNumber) {
|
||||
if (!freePage[pageNumber]) {
|
||||
String msg = "Page already free... terminating";
|
||||
Msg.error(null, msg);
|
||||
throw new AssertException(msg);
|
||||
fail("Page already free... terminating");
|
||||
}
|
||||
freePage[pageNumber] = false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue