Merge remote-tracking branch 'origin/GP-0_ghizard_11.1_small_change_of_GP-4641' into Ghidra_11.1

This commit is contained in:
Ryan Kurtz 2024-05-30 07:39:27 -04:00
commit 29817e3529

View File

@ -100,13 +100,13 @@ public class MDQualification extends MDParsableItem implements Iterable<MDQualif
int loc = dmang.getIndex();
MDQualifier qual = new MDQualifier(dmang);
qual.parse();
quals.add(qual);
// This is a quick fix to prevent infinite looping when the next character is not
// expected. TODO: need to work on code the breaks symbols on these other
// characters that we have seen such as '.' and '`'.
if (dmang.getIndex() == loc) {
break;
}
quals.add(qual);
}
if (dmang.peek() == '@') {
dmang.increment(); // Skip past @.