diff options
| author | unknowntrojan <14975032+unknowntrojan@users.noreply.github.com> | 2024-11-24 14:48:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-24 14:48:29 +0100 |
| commit | e18dcd27c587109f987356e4b1d8b10f12eca61b (patch) | |
| tree | 9c9218f9e51cdb4faae37b0a0af57c4ae08ef3ce | |
| parent | 168787d046c317d8b524cce31bc83d516b3da3cd (diff) | |
fix build
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -989,7 +989,7 @@ impl Command for SigFinderCommand { #[no_mangle] pub extern "C" fn CorePluginInit() -> bool { - binaryninja::logger::init(log::LevelFilter::Info).unwrap(); + binaryninja::logger::init(log::LevelFilter::Info); // TODO: (maybe) if signature not found, maybe go back a few instructions and attempt to create a signature with an offset. // TODO: introduce a setting for "dumb" searches, where we also search non-executable segments for uniqueness, incase the user doesn't want to check the segments before scanning them. |
