Skip to content

Commit 9175a5f

Browse files
committed
[WARP] Remove warning about missing sections for Raw view
1 parent caeb021 commit 9175a5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/warp/src/plugin/workflow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ impl Command for RunMatcher {
7070
pub fn run_matcher(view: &BinaryView) {
7171
// Alert the user if we have no actual regions (one comes from the synthetic section).
7272
let regions = relocatable_regions(view);
73-
if regions.len() <= 1 {
73+
if regions.len() <= 1 && view.memory_map().is_activated() {
7474
log::warn!(
7575
"No relocatable regions found, for best results please define sections for the binary!"
7676
);

0 commit comments

Comments
 (0)