shithub: freetype+ttf2subf

Download patch

ref: 8fe916ca51d0d173b3fd64d6e3327139132232e1
parent: 20e862be32edb81dc7fbb8d82a3b1b0581935869
author: David Turner <[email protected]>
date: Fri Feb 16 11:27:35 EST 2001

fixed a small bug (the advance and format were not copied in
FT_Glyph_Copy)

git/fs: mount .git/fs: mount/attach disallowed
--- a/src/base/ftglyph.c
+++ b/src/base/ftglyph.c
@@ -396,6 +396,9 @@
     if ( error )
       goto Exit;
 
+    copy->advance = source->advance;
+    copy->format  = source->format;
+
     if ( clazz->glyph_copy )
       error = clazz->glyph_copy( source, copy );