Skip to content

Commit 6e290b1

Browse files
committed
UEFIHelper: Update NTHeader constructor arguments
The advancedProcess boolean argument was removed in [1], which is included in Ghidra 12.0. [1]: NationalSecurityAgency/ghidra@129602c
1 parent c808b2e commit 6e290b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ghidra_scripts/UEFIHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ public void run() throws Exception {
415415
BinaryReader reader = new BinaryReader(new ByteArrayProvider(blockBytes), true);
416416
int ntHeaderOffset = reader.readInt(0x3C);
417417
NTHeader ntHeader = new NTHeader(reader, ntHeaderOffset,
418-
PortableExecutable.SectionLayout.FILE, false, false);
418+
PortableExecutable.SectionLayout.FILE, false);
419419
println("Loaded Portable Executable");
420420

421421
machine = ntHeader.getFileHeader().getMachine();

0 commit comments

Comments
 (0)