forked from minhngoc25a/freetype2
Partially revert last commit.
Found by Alexei. * src/autofit/aflatin.c (af_latin_metrics_init_blues): Initializing those variables is plain wrong, since we are in a loop.
This commit is contained in:
parent
87628724a9
commit
cc7cf2c3d0
|
@ -1,3 +1,12 @@
|
|||
2014-03-19 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
Partially revert last commit.
|
||||
|
||||
Found by Alexei.
|
||||
|
||||
* src/autofit/aflatin.c (af_latin_metrics_init_blues): Initializing
|
||||
those variables is plain wrong, since we are in a loop.
|
||||
|
||||
2014-03-18 Sean McBride <sean@rogue-research.com>
|
||||
Werner Lemberg <wl@gnu.org>
|
||||
|
||||
|
|
|
@ -552,8 +552,8 @@
|
|||
{
|
||||
FT_Bool l2r;
|
||||
FT_Pos d;
|
||||
FT_Int p_first = 0; /* pacify clang compiler */
|
||||
FT_Int p_last = 0;
|
||||
FT_Int p_first;
|
||||
FT_Int p_last;
|
||||
|
||||
|
||||
if ( !hit )
|
||||
|
|
Loading…
Reference in New Issue