* src/bzip2/ftbzip2.c (ft_bzip2_alloc): Signedness fix.
This commit is contained in:
parent
83d4181a36
commit
5c9d9bf295
@ -1,3 +1,7 @@
|
||||
2015-02-25 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/bzip2/ftbzip2.c (ft_bzip2_alloc): Signedness fix.
|
||||
|
||||
2015-02-25 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[lzw] Signedness fixes.
|
||||
|
@ -71,7 +71,7 @@
|
||||
int items,
|
||||
int size )
|
||||
{
|
||||
FT_ULong sz = (FT_ULong)size * items;
|
||||
FT_ULong sz = (FT_ULong)size * (FT_ULong)items;
|
||||
FT_Error error;
|
||||
FT_Pointer p = NULL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user