summaryrefslogtreecommitdiff
path: root/libicuuc/libicu/uniset.cpp.patch
diff options
context:
space:
mode:
Diffstat (limited to 'libicuuc/libicu/uniset.cpp.patch')
-rw-r--r--libicuuc/libicu/uniset.cpp.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/libicuuc/libicu/uniset.cpp.patch b/libicuuc/libicu/uniset.cpp.patch
new file mode 100644
index 0000000..eff5c13
--- /dev/null
+++ b/libicuuc/libicu/uniset.cpp.patch
@@ -0,0 +1,11 @@
+--- libicu/uc/uniset.cpp 2020-07-21 11:57:44.853500497 +0300
++++ libicu/uniset.cpp 2020-07-21 12:52:58.109222826 +0300
+@@ -302,7 +302,7 @@ UBool UnicodeSet::operator==(const Unico
+ if (list[i] != o.list[i]) return FALSE;
+ }
+ if (hasStrings() != o.hasStrings()) { return FALSE; }
+- if (hasStrings() && *strings != *o.strings) return FALSE;
++ if (hasStrings() && !(*strings == *o.strings)) return FALSE;
+ return TRUE;
+ }
+