* src/sfnt/pngshim.c (error_callback): s/longjmp/ft_longjmp/.
This commit is contained in:
parent
98e510ee94
commit
d9b4470e39
@ -1,3 +1,7 @@
|
||||
2014-04-22 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/sfnt/pngshim.c (error_callback): s/longjmp/ft_longjmp/.
|
||||
|
||||
2014-04-20 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[autofit] Fix Savannah bug #42148.
|
||||
|
@ -4,7 +4,7 @@
|
||||
/* */
|
||||
/* PNG Bitmap glyph support. */
|
||||
/* */
|
||||
/* Copyright 2013 by Google, Inc. */
|
||||
/* Copyright 2013, 2014 by Google, Inc. */
|
||||
/* Written by Stuart Gill and Behdad Esfahbod. */
|
||||
/* */
|
||||
/* This file is part of the FreeType project, and may only be used, */
|
||||
@ -129,7 +129,7 @@
|
||||
|
||||
*error = FT_THROW( Out_Of_Memory );
|
||||
#ifdef PNG_SETJMP_SUPPORTED
|
||||
longjmp( png_jmpbuf( png ), 1 );
|
||||
ft_longjmp( png_jmpbuf( png ), 1 );
|
||||
#endif
|
||||
/* if we get here, then we have no choice but to abort ... */
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user