summaryrefslogtreecommitdiff
path: root/external/libmwaw/libmwaw-fix-compare-assert.patch.1
diff options
context:
space:
mode:
Diffstat (limited to 'external/libmwaw/libmwaw-fix-compare-assert.patch.1')
-rwxr-xr-xexternal/libmwaw/libmwaw-fix-compare-assert.patch.113
1 files changed, 0 insertions, 13 deletions
diff --git a/external/libmwaw/libmwaw-fix-compare-assert.patch.1 b/external/libmwaw/libmwaw-fix-compare-assert.patch.1
deleted file mode 100755
index d7dae34a90bb..000000000000
--- a/external/libmwaw/libmwaw-fix-compare-assert.patch.1
+++ /dev/null
@@ -1,13 +0,0 @@
-Assertion failed: invalid comparator
-
---- libmwaw/src/lib/MWAWFont.hxx.orig 2017-04-06 14:19:52.751000000 +0200
-+++ libmwaw/src/lib/MWAWFont.hxx 2017-04-06 13:50:51.385400000 +0200
-@@ -505,7 +505,7 @@
- int diff = id() - oth.id();
- if (diff != 0) return diff;
- if (size() < oth.size()) return -1;
-- if (size() > oth.size()) return -1;
-+ if (size() > oth.size()) return 1;
- if (m_sizeIsRelative.get() != oth.m_sizeIsRelative.get()) return m_sizeIsRelative.get() ? 1 : -1;
- if (flags() < oth.flags()) return -1;
- if (flags() > oth.flags()) return 1;