From 9175a5f40d4a0b9d75e90f9bf77260d8a8eb3387 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Fri, 4 Jul 2025 00:30:38 -0400 Subject: [WARP] Remove warning about missing sections for Raw view --- plugins/warp/src/plugin/workflow.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/warp/src/plugin') diff --git a/plugins/warp/src/plugin/workflow.rs b/plugins/warp/src/plugin/workflow.rs index 1a0cd2dd..c83ae809 100644 --- a/plugins/warp/src/plugin/workflow.rs +++ b/plugins/warp/src/plugin/workflow.rs @@ -70,7 +70,7 @@ impl Command for RunMatcher { pub fn run_matcher(view: &BinaryView) { // Alert the user if we have no actual regions (one comes from the synthetic section). let regions = relocatable_regions(view); - if regions.len() <= 1 { + if regions.len() <= 1 && view.memory_map().is_activated() { log::warn!( "No relocatable regions found, for best results please define sections for the binary!" ); -- cgit v1.3.1