Skip to content

Commit

Permalink
Skip clobbering known database entries
Browse files Browse the repository at this point in the history
  • Loading branch information
alandtse committed Oct 27, 2022
1 parent df2aab4 commit eee5626
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vr_address_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,8 @@ def analyze_code_offsets(defined_rel_ids: dict, defined_vr_offsets: dict):
# use databases to suggest addresses for rel::id items
for k, v in defined_rel_ids.items():
id = int(v.get("id"))
if id in id_vr_status:
continue
if id in id_sse:
sse_addr = add_hex_strings(id_sse[id])
v["sse"] = sse_addr
Expand Down

0 comments on commit eee5626

Please sign in to comment.