shithub: freetype+ttf2subf

Download patch

ref: 4b9234b8a2d77864465f001ca5cb1176ec92813a
parent: 3aaebe3a91e55021d99b06f95594c5ff9181968a
author: Werner Lemberg <[email protected]>
date: Wed Feb 25 01:31:43 EST 2015

[cache] Don't use `labs'.

This is the only place in FreeType where this function was used.

* include/config/ftstdlib.h (ft_labs): Remove.

* src/cache/ftcimage.c (ftc_inode_weight): Replace `ft_labs' with
`FT_ABS'.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2015-02-25  Werner Lemberg  <[email protected]>
+
+	[cache] Don't use `labs'.
+
+	This is the only place in FreeType where this function was used.
+
+	* include/config/ftstdlib.h (ft_labs): Remove.
+
+	* src/cache/ftcimage.c (ftc_inode_weight): Replace `ft_labs' with
+	`FT_ABS'.
+
 2015-02-23  Werner Lemberg  <[email protected]>
 
 	[cache] Replace `FT_PtrDist' with `FT_Offset'.
--- a/include/config/ftstdlib.h
+++ b/include/config/ftstdlib.h
@@ -141,8 +141,7 @@
   /**********************************************************************/
 
 
-#define ft_atol   atol
-#define ft_labs   labs
+#define ft_atol  atol
 
 
   /**********************************************************************/
--- a/src/cache/ftcimage.c
+++ b/src/cache/ftcimage.c
@@ -122,7 +122,7 @@
 
 
         bitg = (FT_BitmapGlyph)glyph;
-        size = bitg->bitmap.rows * ft_labs( bitg->bitmap.pitch ) +
+        size = bitg->bitmap.rows * (FT_Offset)FT_ABS( bitg->bitmap.pitch ) +
                sizeof ( *bitg );
       }
       break;