* src/cache/ftcsbits.c (ftc_snode_load): Initialize `*asize' in case


			
			
				CACHE
			
			
		
Werner Lemberg 21 years ago
parent 193309fb3d
commit fdd710cc7e
  1. 5
      ChangeLog
  2. 4
      src/cache/ftcsbits.c

@ -1,3 +1,8 @@
2004-04-14 Alex Strelnikov <ptktyrf@mail.ru>
* src/cache/ftcsbits.c (ftc_snode_load): Initialize `*asize' in case
of error.
2004-04-14 Werner Lemberg <wl@gnu.org>
* src/base/ftmac.c [__GNUC__]: Define OS_INLINE.

@ -169,7 +169,7 @@
/* ignore the errors that might have occurred -- */
/* we mark unloaded glyphs with `sbit.buffer == 0' */
/* and 'width == 255', 'height == 0' */
/* and `width == 255', `height == 0' */
/* */
if ( error && error != FTC_Err_Out_Of_Memory )
{
@ -178,6 +178,8 @@
sbit->height = 0;
sbit->buffer = NULL;
error = 0;
if ( asize )
*asize = 0;
}
return error;

Loading…
Cancel
Save