diff --git a/GhidraDocs/GhidraClass/AdvancedDevelopment/GhidraAdvancedDevelopment.html b/GhidraDocs/GhidraClass/AdvancedDevelopment/GhidraAdvancedDevelopment.html
index f4e3ad76e1..c09005c55b 100644
--- a/GhidraDocs/GhidraClass/AdvancedDevelopment/GhidraAdvancedDevelopment.html
+++ b/GhidraDocs/GhidraClass/AdvancedDevelopment/GhidraAdvancedDevelopment.html
@@ -910,8 +910,7 @@
@Override
public void run() throws Exception {
- Instruction instruction = getFirstInstruction();
- while (instruction != null) {
+ for (Instruction instruction = getFirstInstruction(); instruction != null; instruction = getNextInstruction()) {
if ( monitor.isCancelled() ) {
break;
}
@@ -933,7 +932,6 @@
Scalar scalar = (Scalar) opObjects1[0];
String comment = "[" + register.getName() + "]=[" + scalar.toString(16, false, false, "", "") + "]";
setEOLComment(instruction.getMinAddress(), comment);
- instruction = getNextInstruction();
}
}
}
diff --git a/GhidraDocs/certification.manifest b/GhidraDocs/certification.manifest
index adc1fab797..96c7da486b 100644
--- a/GhidraDocs/certification.manifest
+++ b/GhidraDocs/certification.manifest
@@ -16,7 +16,7 @@ GhidraClass/Advanced/GHIDRA_1.png||GHIDRA||||END|
GhidraClass/Advanced/ghidraRight.png||GHIDRA||||END|
GhidraClass/Advanced/improvingDisassemblyAndDecompilation.pdf||GHIDRA||||END|
GhidraClass/Advanced/improvingDisassemblyAndDecompilation.tex||GHIDRA||||END|
-GhidraClass/AdvancedDevelopment/GhidraAdvancedDevelopment.html||GHIDRA||reviewed|This file contains mostly Ghidra content, but also includes code that is available for distribution, without restrictions, from https://github.com/paulrouget/dzslides.|END|
+GhidraClass/AdvancedDevelopment/GhidraAdvancedDevelopment.html||GHIDRA|||This file contains mostly Ghidra content, but also includes code that is available for distribution, without restrictions, from https://github.com/paulrouget/dzslides.|END|
GhidraClass/AdvancedDevelopment/GhidraAdvancedDevelopment_withNotes.html||Public Domain|||Slight modification of code that is available for distribution, without restrictions, (original extremely permissive wtf license allows us to change IP to Public Domain),from https://github.com/paulrouget/dzslides.|END|
GhidraClass/AdvancedDevelopment/Images/GhidraLogo64.png||GHIDRA||||END|
GhidraClass/AdvancedDevelopment/Images/highLevelClasses.png||GHIDRA||||END|