You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

freetype-2.3.11-array-initialization.patch 417B

123456789101112
  1. --- freetype-2.3.11/src/base/ftoutln.c 2009-03-14 14:45:26.000000000 +0100
  2. +++ freetype-2.3.11/src/base/ftoutln.c 2012-04-03 11:03:35.000000000 +0200
  3. @@ -990,7 +990,8 @@
  4. int i;
  5. FT_Pos ray_y[3];
  6. - FT_Orientation result[3];
  7. + FT_Orientation result[3] =
  8. + { FT_ORIENTATION_NONE, FT_ORIENTATION_NONE, FT_ORIENTATION_NONE };
  9. if ( !outline || outline->n_points <= 0 )