Skip to content

Commit e9eccb4

Browse files
committed
GP-517 moved RTTI analyzer before Reference analysis to fix Rogue
pointer analysis problems found in a few sample binaries
1 parent 2dc8e04 commit e9eccb4

File tree

1 file changed

+1
-1
lines changed
  • Ghidra/Features/MicrosoftCodeAnalyzer/src/main/java/ghidra/app/plugin/prototype/MicrosoftCodeAnalyzerPlugin

1 file changed

+1
-1
lines changed

Ghidra/Features/MicrosoftCodeAnalyzer/src/main/java/ghidra/app/plugin/prototype/MicrosoftCodeAnalyzerPlugin/RttiAnalyzer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public RttiAnalyzer() {
5858
setSupportsOneTimeAnalysis();
5959
// Set priority of RTTI analyzer to run after Demangler so can see if better
6060
// plate comment or label already exists from Demangler.
61-
setPriority(AnalysisPriority.DATA_TYPE_PROPOGATION.before().before());
61+
setPriority(AnalysisPriority.REFERENCE_ANALYSIS.before());
6262
setDefaultEnablement(true);
6363
validationOptions = new DataValidationOptions();
6464
applyOptions = new DataApplyOptions();

0 commit comments

Comments
 (0)