aboutsummaryrefslogtreecommitdiffstats
path: root/community/inkscape/fix-crash.patch
diff options
context:
space:
mode:
authortmpfile <tmpfile@users.noreply.github.com>2017-09-26 07:03:25 -0300
committerNatanael Copa <ncopa@alpinelinux.org>2018-03-21 12:08:55 +0000
commit28dac9bfd84b687de77af710a3557797a59ab402 (patch)
tree3475154308d42c9df9b7e5aaa62513873361888a /community/inkscape/fix-crash.patch
parent242dfebcfef6c8aded0242672b18db60b6385bed (diff)
downloadaports-28dac9bfd84b687de77af710a3557797a59ab402.tar.bz2
aports-28dac9bfd84b687de77af710a3557797a59ab402.tar.xz
community/inkscape: upgrade to 0.92.2
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;