mirror of https://github.com/freetype/freetype
* src/cache/ftcsbits.c (ftc_snode_load): Initialize `*asize' in case
of error.
This commit is contained in:
parent
3599a028b6
commit
336bc908c8
|
@ -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…
Reference in New Issue