summaryrefslogtreecommitdiff
path: root/libre/icu-65-compat/icu-65.1-initialized-buffer-uloc_getKeywordValue.patch
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2020-12-23 08:45:03 -0500
committerbill-auger <mr.j.spam.me@gmail.com>2020-12-23 10:20:50 -0500
commitb17ecdffc6ee3aaa09920ab3d213ef80c72006c0 (patch)
tree5d4d758a1f1084fad356dbd66a71e42b30eebdde /libre/icu-65-compat/icu-65.1-initialized-buffer-uloc_getKeywordValue.patch
parent4208fa824778c0b5880ede6db70f2a949f773b5a (diff)
downloadabslibre-b17ecdffc6ee3aaa09920ab3d213ef80c72006c0.tar.gz
abslibre-b17ecdffc6ee3aaa09920ab3d213ef80c72006c0.tar.bz2
abslibre-b17ecdffc6ee3aaa09920ab3d213ef80c72006c0.zip
[icu-65-compat][icu-compat]: upgrade to v68 - rename package
Diffstat (limited to 'libre/icu-65-compat/icu-65.1-initialized-buffer-uloc_getKeywordValue.patch')
-rw-r--r--libre/icu-65-compat/icu-65.1-initialized-buffer-uloc_getKeywordValue.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/libre/icu-65-compat/icu-65.1-initialized-buffer-uloc_getKeywordValue.patch b/libre/icu-65-compat/icu-65.1-initialized-buffer-uloc_getKeywordValue.patch
deleted file mode 100644
index 475921d23..000000000
--- a/libre/icu-65-compat/icu-65.1-initialized-buffer-uloc_getKeywordValue.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From fab4c3c719977205a3f005ddfd7fffbb9c19c587 Mon Sep 17 00:00:00 2001
-From: Frank Tang <ftang@chromium.org>
-Date: Wed, 30 Oct 2019 17:45:22 -0700
-Subject: [PATCH] ICU-20884 initialized buffer uloc_getKeywordValue
-
----
- icu4c/source/common/uloc.cpp | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/icu4c/source/common/uloc.cpp b/icu4c/source/common/uloc.cpp
-index 6a9bfcfbff5..ea81c0ce87f 100644
---- a/icu4c/source/common/uloc.cpp
-+++ b/icu4c/source/common/uloc.cpp
-@@ -766,6 +766,9 @@ uloc_getKeywordValue(const char* localeID,
- char* buffer, int32_t bufferCapacity,
- UErrorCode* status)
- {
-+ if (buffer != nullptr) {
-+ buffer[0] = '\0';
-+ }
- const char* startSearchHere = NULL;
- const char* nextSeparator = NULL;
- char keywordNameBuffer[ULOC_KEYWORD_BUFFER_LEN];