forked from minhngoc25a/freetype2
`make multi' fixes; compiler warnings.
* src/base/ftsnames.c: Include FT_INTERNAL_DEBUG_H. * src/cff/cffobjs.c [TT_CONFIG_OPTION_GX_VAR_SUPPORT]: Include FT_MULTIPLE_MASTERS_H and FT_SERVICE_MULTIPLE_MASTERS_H. * src/sfnt/sfdriver.c [TT_CONFIG_OPTION_GX_VAR_SUPPORT]: Include FT_MULTIPLE_MASTERS_H and FT_SERVICE_MULTIPLE_MASTERS_H. (get_win_string, get_apple_string): Initialize `result'.
This commit is contained in:
parent
fdbef538f4
commit
bffb7fe90b
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,16 @@
|
|||
2017-03-17 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
`make multi' fixes; compiler warnings.
|
||||
|
||||
* src/base/ftsnames.c: Include FT_INTERNAL_DEBUG_H.
|
||||
|
||||
* src/cff/cffobjs.c [TT_CONFIG_OPTION_GX_VAR_SUPPORT]: Include
|
||||
FT_MULTIPLE_MASTERS_H and FT_SERVICE_MULTIPLE_MASTERS_H.
|
||||
|
||||
* src/sfnt/sfdriver.c [TT_CONFIG_OPTION_GX_VAR_SUPPORT]: Include
|
||||
FT_MULTIPLE_MASTERS_H and FT_SERVICE_MULTIPLE_MASTERS_H.
|
||||
(get_win_string, get_apple_string): Initialize `result'.
|
||||
|
||||
2017-03-17 Dave Arnold <darnold@adobe.com>
|
||||
|
||||
[cff] Fix potential bugs in default NDV for CFF2.
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
|
||||
|
||||
#include <ft2build.h>
|
||||
#include FT_INTERNAL_DEBUG_H
|
||||
|
||||
#include FT_SFNT_NAMES_H
|
||||
#include FT_INTERNAL_TRUETYPE_TYPES_H
|
||||
#include FT_INTERNAL_STREAM_H
|
||||
|
|
|
@ -27,6 +27,11 @@
|
|||
#include FT_INTERNAL_SFNT_H
|
||||
#include FT_CFF_DRIVER_H
|
||||
|
||||
#ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT
|
||||
#include FT_MULTIPLE_MASTERS_H
|
||||
#include FT_SERVICE_MULTIPLE_MASTERS_H
|
||||
#endif
|
||||
|
||||
#include "cffobjs.h"
|
||||
#include "cffload.h"
|
||||
#include "cffcmap.h"
|
||||
|
|
|
@ -51,6 +51,11 @@
|
|||
#include FT_SERVICE_SFNT_H
|
||||
#include FT_SERVICE_TT_CMAP_H
|
||||
|
||||
#ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT
|
||||
#include FT_MULTIPLE_MASTERS_H
|
||||
#include FT_SERVICE_MULTIPLE_MASTERS_H
|
||||
#endif
|
||||
|
||||
|
||||
/*************************************************************************/
|
||||
/* */
|
||||
|
@ -473,7 +478,7 @@
|
|||
{
|
||||
FT_Error error = FT_Err_Ok;
|
||||
|
||||
char* result;
|
||||
char* result = NULL;
|
||||
FT_String* r;
|
||||
FT_Char* p;
|
||||
FT_UInt len;
|
||||
|
@ -534,7 +539,7 @@
|
|||
{
|
||||
FT_Error error = FT_Err_Ok;
|
||||
|
||||
char* result;
|
||||
char* result = NULL;
|
||||
FT_String* r;
|
||||
FT_Char* p;
|
||||
FT_UInt len;
|
||||
|
|
Loading…
Reference in New Issue