mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
GP-4756 Corrected StructureDB length update issue
This commit is contained in:
parent
282c6b698a
commit
369bf3b05e
1 changed files with 7 additions and 5 deletions
|
@ -2472,21 +2472,23 @@ class StructureDB extends CompositeDB implements StructureInternal {
|
|||
private boolean updateComposite(int currentNumComponents, int currentLength,
|
||||
int currentAlignment, boolean setLastChangeTime) {
|
||||
boolean compositeChanged = false;
|
||||
if (currentNumComponents >= 0 && currentNumComponents != record
|
||||
.getIntValue(CompositeDBAdapter.COMPOSITE_NUM_COMPONENTS_COL)) {
|
||||
if (currentNumComponents >= 0 &&
|
||||
(currentNumComponents != numComponents || currentNumComponents != record
|
||||
.getIntValue(CompositeDBAdapter.COMPOSITE_NUM_COMPONENTS_COL))) {
|
||||
numComponents = currentNumComponents;
|
||||
record.setIntValue(CompositeDBAdapter.COMPOSITE_NUM_COMPONENTS_COL, numComponents);
|
||||
setLastChangeTime = true;
|
||||
compositeChanged = true;
|
||||
}
|
||||
if (currentLength >= 0 &&
|
||||
currentLength != record.getIntValue(CompositeDBAdapter.COMPOSITE_LENGTH_COL)) {
|
||||
if (currentLength >= 0 && (currentLength != structLength ||
|
||||
currentLength != record.getIntValue(CompositeDBAdapter.COMPOSITE_LENGTH_COL))) {
|
||||
structLength = currentLength;
|
||||
record.setIntValue(CompositeDBAdapter.COMPOSITE_LENGTH_COL, structLength);
|
||||
compositeChanged = true;
|
||||
}
|
||||
if (currentAlignment >= 0 &&
|
||||
currentAlignment != record.getIntValue(CompositeDBAdapter.COMPOSITE_ALIGNMENT_COL)) {
|
||||
(currentAlignment != structAlignment || currentAlignment != record
|
||||
.getIntValue(CompositeDBAdapter.COMPOSITE_ALIGNMENT_COL))) {
|
||||
structAlignment = currentAlignment;
|
||||
record.setIntValue(CompositeDBAdapter.COMPOSITE_ALIGNMENT_COL, structAlignment);
|
||||
compositeChanged = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue