mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GT-3130 Corrected VariableSymbol refresh after undo/redo
This commit is contained in:
parent
8dd99fd969
commit
0850cfa02f
1 changed files with 7 additions and 0 deletions
|
@ -109,6 +109,13 @@ public class VariableSymbolDB extends SymbolDB {
|
|||
return type;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean refresh(Record rec) {
|
||||
boolean isValid = super.refresh(rec);
|
||||
variableStorage = null;
|
||||
return isValid;
|
||||
}
|
||||
|
||||
/**
|
||||
* @see ghidra.program.database.symbol.SymbolDB#equals(java.lang.Object)
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue