mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-28 16:59:50 +08:00
GP-6854 Corrected NPE in PropertyListMergeManager
This commit is contained in:
+1
-1
@@ -322,7 +322,7 @@ public class PropertyListMergeManager implements MergeResolver {
|
|||||||
Object myValue = getValue(myList, propertyName);
|
Object myValue = getValue(myList, propertyName);
|
||||||
Object origValue = getValue(origList, propertyName);
|
Object origValue = getValue(origList, propertyName);
|
||||||
|
|
||||||
if (!myValue.equals(origValue)) {
|
if (!Objects.equals(myValue, origValue)) {
|
||||||
setValue(resultList, propertyName, myList.getType(propertyName), myValue);
|
setValue(resultList, propertyName, myList.getType(propertyName), myValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user