You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue here is the second arg of the function has type __off64_t, and there are two typedefs in Ghidra that define this type. Unfortunately, we choose the wrong one for this reference. We chose DWARF, but we should've chosen types.h. In #146 a temporary solution was chosen always to prioritize types.h, but this will not work into the future.
To solve this, we must encode scopes into the artifacts, which will require more time to develop.
The text was updated successfully, but these errors were encountered:
This issue is related to #97, since the root bug is scopes in Ghidra.
This the
fdupes
binary inside the CI, the following can be observed:The issue here is the second arg of the function has type
__off64_t
, and there are two typedefs in Ghidra that define this type. Unfortunately, we choose the wrong one for this reference. We choseDWARF
, but we should've chosentypes.h
. In #146 a temporary solution was chosen always to prioritizetypes.h
, but this will not work into the future.To solve this, we must encode scopes into the artifacts, which will require more time to develop.
The text was updated successfully, but these errors were encountered: