summaryrefslogtreecommitdiff
path: root/icu/icu4c.10129.wintz.patch
diff options
context:
space:
mode:
Diffstat (limited to 'icu/icu4c.10129.wintz.patch')
-rw-r--r--icu/icu4c.10129.wintz.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/icu/icu4c.10129.wintz.patch b/icu/icu4c.10129.wintz.patch
deleted file mode 100644
index 1c6ace908425..000000000000
--- a/icu/icu4c.10129.wintz.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-# Fix for fdo#59850
-# Patch was also submitted with https://ssl.icu-project.org/trac/ticket/10129
-# of which the outcome should be monitored.
-
---- misc/icu/source/common/wintz.c
-+++ misc/build/icu/source/common/wintz.c
-@@ -254,7 +254,6 @@
- char apiStdName[MAX_LENGTH_ID];
- char regStdName[MAX_LENGTH_ID];
- char tmpid[MAX_LENGTH_ID];
-- int32_t apiStdLength = 0;
- int32_t len;
- int id;
- int errorCode;
-@@ -280,8 +279,8 @@
-
- /* Convert the wchar_t* standard name to char* */
- uprv_memset(apiStdName, 0, sizeof(apiStdName));
-- u_strFromWCS(apiStd, MAX_LENGTH_ID, &apiStdLength, apiTZI.StandardName, -1, &status);
-- u_austrncpy(apiStdName, apiStd, apiStdLength);
-+ u_strFromWCS(apiStd, MAX_LENGTH_ID, NULL, apiTZI.StandardName, -1, &status);
-+ u_austrncpy(apiStdName, apiStd, sizeof(apiStdName) - 1);
-
- tmpid[0] = 0;