From ea37b7c82ad5c73e074239a241d3fc93a0f8bcb2 Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Wed, 20 Dec 2023 08:47:32 +0900 Subject: [PATCH] Allow to build oxilangtag-ffi with rustc < 1.65 Gbp-Pq: Topic debian-hacks Gbp-Pq: Name Allow-to-build-oxilangtag-ffi-with-rustc-1.65.patch --- intl/locale/rust/oxilangtag-ffi/src/lib.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/intl/locale/rust/oxilangtag-ffi/src/lib.rs b/intl/locale/rust/oxilangtag-ffi/src/lib.rs index 5a30e9b77f4..e647fb0ae60 100644 --- a/intl/locale/rust/oxilangtag-ffi/src/lib.rs +++ b/intl/locale/rust/oxilangtag-ffi/src/lib.rs @@ -85,7 +85,9 @@ pub extern "C" fn lang_tag_matches(attribute: *const LangTag, selector: &nsACStr loop { // 4. When the language range's list has no more subtags, the match // succeeds. - let Some(range_subtag_str) = range_subtag else { + let range_subtag_str = if let Some(range_subtag_str) = range_subtag { + range_subtag_str + } else { return true; }; @@ -99,7 +101,9 @@ pub extern "C" fn lang_tag_matches(attribute: *const LangTag, selector: &nsACStr // B. Else, if there are no more subtags in the language tag's // list, the match fails. - let Some(lang_subtag_str) = lang_subtag else { + let lang_subtag_str = if let Some(lang_subtag_str) = lang_subtag { + lang_subtag_str + } else { return false; }; -- 2.30.2