We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af7dd05 commit 66bdca6Copy full SHA for 66bdca6
src/bindiff/bindiff.py
@@ -110,8 +110,8 @@ def secondary_unmatched_function(self) -> list[FunctionBinExport]:
110
:return: list of unmatched functions in secondary
111
"""
112
funs = []
113
- for fun_addr, fun in self.primary.items():
114
- if fun_addr not in self.primary_functions_match:
+ for fun_addr, fun in self.secondary.items():
+ if fun_addr not in self.secondary_functions_match:
115
funs.append(fun)
116
return funs
117
0 commit comments