shithub: freetype+ttf2subf

Download patch

ref: ab6fe0768fd2a319d73adfd6cc1c8338bf2e669c
parent: cdab9cfae9f336bddf709bad6f4f1de66f67524e
author: Alexei Podtelezhnikov <[email protected]>
date: Mon Nov 6 16:34:56 EST 2017

* src/smooth/ftgrays.c (gray_set_cell): Fix uninitialized variables.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2017-11-01  Alexei Podtelezhnikov  <[email protected]>
+
+	* src/smooth/ftgrays.c (gray_set_cell): Fix uninitialized variables.
+
 2017-11-03  Ewald Hew  <[email protected]>
 
 	[psaux] Fix PostScript interpreter rewinding in Type 1 mode. (#52251)
--- a/src/smooth/ftgrays.c
+++ b/src/smooth/ftgrays.c
@@ -582,8 +582,8 @@
     if ( ex < ras.min_ex )
       ex = ras.min_ex - 1;
 
-    /* record the current one if it is substantial and valid */
-    if ( ( ras.area || ras.cover ) && !ras.invalid )
+    /* record the current one if it is valid and substantial */
+    if ( !ras.invalid && ( ras.area || ras.cover ) )
       gray_record_cell( RAS_VAR );
 
     ras.area  = 0;