diff options
-rw-r--r-- | ripple/minitrace/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripple/minitrace/src/main.rs b/ripple/minitrace/src/main.rs index 811f6a9..3857b77 100644 --- a/ripple/minitrace/src/main.rs +++ b/ripple/minitrace/src/main.rs @@ -154,7 +154,7 @@ impl Process { .. } in &mut mappings { - if pathname.starts_with('[') && pathname.ends_with(']') { + if pathname == "" || (pathname.starts_with('[') && pathname.ends_with(']')) { // these won't exist in map_files continue; } |