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

2.6.5
Werner Lemberg 10 years ago
parent 83d4181a36
commit 5c9d9bf295
  1. 4
      ChangeLog
  2. 2
      src/bzip2/ftbzip2.c

@ -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…
Cancel
Save