Pacify compiler.
* src/cff/cffload.c (cff_index_get_pointers): Initialize `new_bytes'.
This commit is contained in:
parent
b33b856a27
commit
c73e160517
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue