Commit 53afb15c authored by Gabriele Svelto's avatar Gabriele Svelto
Browse files

Bug 1872920 - Fix building mozwer-rust for rust version 1.69.0 a=diannaS

parent b695e836
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -41,7 +41,11 @@ impl ProcessReader {
                let name = self.get_module_name(module);
                // Crude way of mimicking Windows lower-case comparisons but
                // sufficient for our use-cases.
                name.is_some_and(|name| name.eq_ignore_ascii_case(module_name))
                if let Some(name) = name {
                    name.eq_ignore_ascii_case(module_name)
                } else {
                    false
                }
            })
            .find_map(|&module| {
                self.get_module_info(module).and_then(|info| {