Fix loop variables. (coverity found bug.)

2006-04-12  Behdad Esfahbod  <behdad@gnome.org>

        * pango/opentype/harfbuzz-gpos.c: Fix loop variables. (coverity
        found bug.)
This commit is contained in:
Behdad Esfahbod 2006-04-12 18:47:50 +00:00 committed by Behdad Esfahbod
parent 14022e826f
commit d2a613187c
1 changed files with 3 additions and 3 deletions

View File

@ -5022,19 +5022,19 @@ Fail1:
FREE( plr );
Fail2:
for ( m = 0; m < nl; nl++ )
for ( m = 0; m < nl; m++ )
_HB_OPEN_Free_Coverage( &l[m], memory );
FREE( l );
Fail3:
for ( m = 0; m < ni; n++ )
for ( m = 0; m < ni; m++ )
_HB_OPEN_Free_Coverage( &i[m], memory );
FREE( i );
Fail4:
for ( m = 0; m < nb; n++ )
for ( m = 0; m < nb; m++ )
_HB_OPEN_Free_Coverage( &b[m], memory );
FREE( b );