Skip to content
Snippets Groups Projects
Commit 612a1f1d authored by bitmap's avatar bitmap
Browse files

Fix issue with Fontconfig freezing during init of freetype, and

causing segfault on Windows platform
parent bb05ac4f
No related branches found
No related tags found
No related merge requests found
......@@ -53,8 +53,8 @@
+
+ return p_dir_in;
+ }
+ if( *p_dir_out[ strlen( *p_dir_out ) - 1 ] != '\\' )
+ strcat( *p_dir_out, "\\" );
+ if( (*p_dir_out)[ rc - 1 ] != '\\' )
+ strcpy( (*p_dir_out)+rc, "\\" );
+ strcat( *p_dir_out, "fonts" );
+
+ return *p_dir_out;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment