summaryrefslogtreecommitdiff
path: root/navit
diff options
context:
space:
mode:
authorsleske <sleske@ffa7fe5e-494d-0410-b361-a75ebd5db220>2014-11-03 15:18:15 +0000
committersleske <sleske@ffa7fe5e-494d-0410-b361-a75ebd5db220>2014-11-03 15:18:15 +0000
commit05354b69d2a58eaf58c8ff1e60f7b4f39628946a (patch)
tree3211a476a43e2c1131767ad3de70e9c1d870c25b /navit
parentc56d999b58c1c3dcc7bd8fbf71023454898cbad5 (diff)
downloadnavit-svn-05354b69d2a58eaf58c8ff1e60f7b4f39628946a.tar.gz
Fix:font/freetype:Do not call FcFini on shutdown, it will assert() anyway.
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@5922 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit')
-rw-r--r--navit/font/freetype/font_freetype.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/navit/font/freetype/font_freetype.c b/navit/font/freetype/font_freetype.c
index 50962fda..e4453b59 100644
--- a/navit/font/freetype/font_freetype.c
+++ b/navit/font/freetype/font_freetype.c
@@ -782,14 +782,13 @@ font_freetype_glyph_get_glyph(struct font_freetype_glyph *g,
static void
font_freetype_destroy(void) {
+ // Do not call FcFini here: GdkPixbuf also (indirectly) uses fontconfig (for SVGs with
+ // text), but does not properly deallocate all objects, so FcFini assert()s.
if (!library_deinit) {
-#ifdef HAVE_FONTCONFIG
- FcFini();
-#endif
#if USE_CACHING
- FTC_Manager_Done(manager);
+ FTC_Manager_Done(manager);
#endif
- FT_Done_FreeType(library);
+ FT_Done_FreeType(library);
}
library_deinit = 1;
}