* src/bzip2/ftbzip2.c (ft_bzip2_alloc): Signedness fix.

This commit is contained in:
Werner Lemberg 2015-02-25 08:13:40 +01:00
parent 83d4181a36
commit 5c9d9bf295
2 changed files with 5 additions and 1 deletions

View File

@ -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.

View File

@ -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;