Skip to content

Commit c19789e

Browse files
committed
Fix conflict from bad rebase SQUASH ME
1 parent a611686 commit c19789e

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

rust/src/binary_view.rs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1830,8 +1830,13 @@ impl BinaryView {
18301830
None => std::ptr::null_mut(),
18311831
};
18321832

1833-
let handle =
1834-
BNAddFunctionForAnalysis(self.handle, platform.handle, address, true, func_type);
1833+
let handle = BNAddFunctionForAnalysis(
1834+
self.handle,
1835+
platform.handle,
1836+
address,
1837+
auto_discovered,
1838+
func_type,
1839+
);
18351840

18361841
if handle.is_null() {
18371842
return None;

0 commit comments

Comments
 (0)