summaryrefslogtreecommitdiffstats
path: root/icu.rhbz1074549.CVE-2013-5907.patch
diff options
context:
space:
mode:
authorPavel Podkorytov <pod.pavel@gmail.com>2019-02-07 09:38:24 +0500
committerRemi Collet <remi@remirepo.net>2019-02-07 11:01:44 +0100
commitd42861a783ec16c6c867ff1d8db38ad773f4fc44 (patch)
tree6ca44118d2ae20c74b4d33e3489fd971ffc6942e /icu.rhbz1074549.CVE-2013-5907.patch
parent8e8e37c203b44b957c6eba657b7ff1ecbff190bd (diff)
Update major version to 62.1
* backport FEDORA-29 package * remove tz version updating
Diffstat (limited to 'icu.rhbz1074549.CVE-2013-5907.patch')
-rw-r--r--icu.rhbz1074549.CVE-2013-5907.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/icu.rhbz1074549.CVE-2013-5907.patch b/icu.rhbz1074549.CVE-2013-5907.patch
deleted file mode 100644
index beb22b3..0000000
--- a/icu.rhbz1074549.CVE-2013-5907.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-
-# erAck: resolves https://bugzilla.redhat.com/show_bug.cgi?id=1074549
-# Based on http://hg.openjdk.java.net/jdk7u/jdk7u/jdk/rev/9d29c19f1de1
-# where a/src/share/native/sun/font/layout/LookupProcessor.cpp is
-# icu/source/layout/LookupProcessor.cpp
-# Adapted to LayoutEngine "patch" and subsequent patches.
-# Note that
-#@@ -246,7 +249,7 @@
-#- featureReferences += SWAPW(featureTable->lookupCount);
-#+ featureReferences += SWAPW(requiredFeatureTable->lookupCount);
-# was already applied with icu.8800.freeserif.crash.patch that also added
-#+ if (requiredFeatureTable.isValid()) {
-# and is a slightly enhanced version of
-# https://ssl.icu-project.org/trac/ticket/8800 and/or
-# https://ssl.icu-project.org/trac/ticket/8320
-
---- prev.icu/source/layout/LookupProcessor.cpp 2014-03-11 20:46:53.288819882 +0100
-+++ icu/source/layout/LookupProcessor.cpp 2014-03-11 20:54:43.153370234 +0100
-@@ -113,7 +113,7 @@
- le_int32 LookupProcessor::selectLookups(const LEReferenceTo<FeatureTable> &featureTable, FeatureMask featureMask, le_int32 order, LEErrorCode &success)
- {
- le_uint16 lookupCount = featureTable.isValid()? SWAPW(featureTable->lookupCount) : 0;
-- le_int32 store = order;
-+ le_uint32 store = (le_uint32)order;
-
- LEReferenceToArrayOf<le_uint16> lookupListIndexArray(featureTable, success, featureTable->lookupListIndexArray, lookupCount);
-
-@@ -122,6 +122,9 @@
- if (lookupListIndex >= lookupSelectCount) {
- continue;
- }
-+ if (store >= lookupOrderCount) {
-+ continue;
-+ }
-
- lookupSelectArray[lookupListIndex] |= featureMask;
- lookupOrderArray[store++] = lookupListIndex;