diff options
Diffstat (limited to 'textproc/icu/patches/patch-common_ucnv__io.cpp')
-rw-r--r-- | textproc/icu/patches/patch-common_ucnv__io.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/textproc/icu/patches/patch-common_ucnv__io.cpp b/textproc/icu/patches/patch-common_ucnv__io.cpp deleted file mode 100644 index 933d782a170..00000000000 --- a/textproc/icu/patches/patch-common_ucnv__io.cpp +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-common_ucnv__io.cpp,v 1.1 2015/09/29 02:15:54 tnn Exp $ - -Debian CVE-2015-1270.patch - ---- common/ucnv_io.cpp.orig 2015-03-27 21:10:42.000000000 +0000 -+++ common/ucnv_io.cpp -@@ -744,7 +744,7 @@ ucnv_io_getConverterName(const char *ali - * the name begins with 'x-'. If it does, strip it off and try - * again. This behaviour is similar to how ICU4J does it. - */ -- if (aliasTmp[0] == 'x' || aliasTmp[1] == '-') { -+ if (aliasTmp[0] == 'x' && aliasTmp[1] == '-') { - aliasTmp = aliasTmp+2; - } else { - break; |