forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backed out 3 changesets (bug 1792775) for causing build bustages in d…
…ateTimeField.js CLOSED TREE Backed out changeset afc4c848f6cd (bug 1792775) Backed out changeset 3ad9903f28d8 (bug 1792775) Backed out changeset 838947448110 (bug 1792775)
- Loading branch information
Showing
1,661 changed files
with
48,950 additions
and
120,497 deletions.
There are no files selected for viewing
Binary file renamed
BIN
+14.3 MB
config/external/icu/data/icudt72l.dat → config/external/icu/data/icudt71l.dat
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# https://github.com/unicode-org/icu/pull/2067 | ||
# https://github.com/unicode-org/icu/pull/2067.diff | ||
# | ||
# ICU bug: https://unicode-org.atlassian.net/browse/ICU-21994 | ||
|
||
diff --git a/intl/icu/source/common/locid.cpp b/intl/icu/source/common/locid.cpp | ||
index 73bb8d8aec1..96d3851804d 100644 | ||
--- a/intl/icu/source/common/locid.cpp | ||
+++ b/intl/icu/source/common/locid.cpp | ||
@@ -716,20 +716,19 @@ AliasDataBuilder::readAlias( | ||
status = U_MEMORY_ALLOCATION_ERROR; | ||
return; | ||
} | ||
- int i = 0; | ||
- while (ures_hasNext(alias)) { | ||
+ for (int i = 0; U_SUCCESS(status) && ures_hasNext(alias); i++) { | ||
LocalUResourceBundlePointer res( | ||
ures_getNextResource(alias, nullptr, &status)); | ||
const char* aliasFrom = ures_getKey(res.getAlias()); | ||
UnicodeString aliasTo = | ||
ures_getUnicodeStringByKey(res.getAlias(), "replacement", &status); | ||
+ if (U_FAILURE(status)) return; | ||
|
||
checkType(aliasFrom); | ||
checkReplacement(aliasTo); | ||
|
||
rawTypes[i] = aliasFrom; | ||
rawIndexes[i] = strings->add(aliasTo, status); | ||
- i++; | ||
} | ||
} | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.