mirror of https://github.com/freetype/freetype
Partially revert commit from 2014-06-13.
* src/autofit/aflatin.c (af_latin_metrics_init_blues): Move declaration of `p_first' and `p_last' out of the loop.
This commit is contained in:
parent
cf2347c962
commit
231171fc3a
|
@ -1,3 +1,10 @@
|
|||
2014-06-17 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
Partially revert commit from 2014-06-13.
|
||||
|
||||
* src/autofit/aflatin.c (af_latin_metrics_init_blues): Move
|
||||
declaration of `p_first' and `p_last' out of the loop.
|
||||
|
||||
2014-06-17 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* builds/unix/freetype2.m4: s/AC_PATH_PROG/AC_PATH_TOOL/.
|
||||
|
|
|
@ -536,6 +536,13 @@
|
|||
FT_Int last;
|
||||
FT_Bool hit;
|
||||
|
||||
/* we intentionally declare these two variables */
|
||||
/* outside of the loop since various compilers emit */
|
||||
/* incorrect warning messages otherwise, talking about */
|
||||
/* `possibly uninitialized variables' */
|
||||
FT_Int p_first = 0; /* make compiler happy */
|
||||
FT_Int p_last = 0;
|
||||
|
||||
FT_Bool left2right;
|
||||
|
||||
|
||||
|
@ -568,8 +575,6 @@
|
|||
{
|
||||
FT_Bool l2r;
|
||||
FT_Pos d;
|
||||
FT_Int p_first = 0; /* make compiler happy */
|
||||
FT_Int p_last = 0;
|
||||
|
||||
|
||||
if ( !hit )
|
||||
|
|
Loading…
Reference in New Issue