aboutsummaryrefslogtreecommitdiffstats
path: root/community/inkscape/fix-crash.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/inkscape/fix-crash.patch')
-rw-r--r--community/inkscape/fix-crash.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/community/inkscape/fix-crash.patch b/community/inkscape/fix-crash.patch
deleted file mode 100644
index 7cb5991297..0000000000
--- a/community/inkscape/fix-crash.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-From: Timo Teräs <timo.teras@iki.fi>
-
-Remove redundant object instantiation which yields returning c_str to
-temporary stack object.
-
---- inkscape-0.92.1/src/libnrtype/FontFactory.cpp 2015-12-23 19:36:15.310394043 +0200
-+++ inkscape-0.92.1/src/libnrtype/FontFactory.cpp 2015-12-23 19:35:31.876527221 +0200
-@@ -196,7 +196,7 @@
- const char *pangoFamily = pango_font_description_get_family(fontDescr);
-
- if (pangoFamily && ((it = fontNameMap.find(pangoFamily)) != fontNameMap.end())) {
-- return ((Glib::ustring)it->second).c_str();
-+ return it->second.c_str();
- }
-
- return pangoFamily;