Pacify compiler.

* src/cff/cffload.c (cff_index_get_pointers): Initialize
`new_bytes'.
This commit is contained in:
Werner Lemberg 2010-07-06 10:44:56 +02:00
parent b33b856a27
commit c73e160517
2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2010-07-06 Werner Lemberg <wl@gnu.org>
Pacify compiler.
* src/cff/cffload.c (cff_index_get_pointers): Initialize
`new_bytes'.
2010-07-05 Eugene A. Shatokhin <spectre@ispras.ru>
Fix Savannah bug #27648.

View File

@ -385,10 +385,10 @@
FT_Byte*** table,
FT_Byte** pool )
{
FT_Error error = CFF_Err_Ok;
FT_Memory memory = idx->stream->memory;
FT_Error error = CFF_Err_Ok;
FT_Memory memory = idx->stream->memory;
FT_Byte** t;
FT_Byte* new_bytes;
FT_Byte* new_bytes = NULL;
*table = NULL;