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

of error.
This commit is contained in:
Werner Lemberg 2004-04-15 16:09:31 +00:00
parent 193309fb3d
commit fdd710cc7e
2 changed files with 8 additions and 1 deletions

View File

@ -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.

View File

@ -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;