--- 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; }