shithub: freetype+ttf2subf

Download patch

ref: 1e5754f2d6f3999f609bd3897883f69ef0285e96
parent: 7ba2c674a6825d1bda8c9e4a151682e5dea97a3d
author: Just van Rossum <[email protected]>
date: Thu Mar 2 05:52:57 EST 2000

added missing "else": without it FT_Open_Face() would still scan the list of drivers when specifying an explicit driver

git/fs: mount .git/fs: mount/attach disallowed
--- a/src/base/ftobjs.c
+++ b/src/base/ftobjs.c
@@ -1227,7 +1227,7 @@
 
       goto Fail;
     }
-    
+    else
     {
       /* check each font driver for an appropriate format */
       FT_Driver*  cur   = library->drivers;