* src/pfr/pfrgload.c (pfr_glyph_curve_to, pfr_glyph_line_to): Convert


			
			
				david-pic-changes
			
			
		
Werner Lemberg 18 years ago
parent 6c05475d50
commit 9a0332cd3f
  1. 4
      ChangeLog
  2. 16
      src/pfr/pfrgload.c

@ -4,8 +4,8 @@
(pfr_glyph_load_simple): Convert assertion into normal FreeType
error.
Check `idx'.
(pfr_glyph_load_compound): Convert assertion into normal FreeType
error.
(pfr_glyph_load_compound, pfr_glyph_curve_to, pfr_glyph_line_to):
Convert assertion into normal FreeType error.
* src/pfr/pfrtypes.h (PFR_GlyphRec): Comment out unused code.

@ -133,7 +133,12 @@
/* check that we have begun a new path */
FT_ASSERT( glyph->path_begun != 0 );
if ( !glyph->path_begun )
{
error = PFR_Err_Invalid_Table;
FT_ERROR(( "pfr_glyph_line_to: invalid glyph data\n" ));
goto Exit;
}
error = FT_GLYPHLOADER_CHECK_POINTS( loader, 1, 0 );
if ( !error )
@ -147,6 +152,7 @@
outline->n_points++;
}
Exit:
return error;
}
@ -163,7 +169,12 @@
/* check that we have begun a new path */
FT_ASSERT( glyph->path_begun != 0 );
if ( !glyph->path_begun )
{
error = PFR_Err_Invalid_Table;
FT_ERROR(( "pfr_glyph_line_to: invalid glyph data\n" ));
goto Exit;
}
error = FT_GLYPHLOADER_CHECK_POINTS( loader, 3, 0 );
if ( !error )
@ -182,6 +193,7 @@
outline->n_points = (FT_Short)( outline->n_points + 3 );
}
Exit:
return error;
}

Loading…
Cancel
Save