DB-1283 corrected copyField to preserve null state for PrimitiveField's

This commit is contained in:
ghidra1 2021-09-03 12:57:13 -04:00
parent 497fe46d19
commit 17c6f5b1e8
9 changed files with 38 additions and 1 deletions

View file

@ -126,6 +126,11 @@ public class FixedField10 extends FixedField {
@Override
public FixedField copyField() {
if (isNull()) {
FixedField10 copy = new FixedField10();
copy.setNull();
return copy;
}
return new FixedField10(hi8, lo2, false);
}