* src/cid/cidload.c (cid_hex_to_binary): Fix typo (#56653).

internal-zlib-update
Weiyi Wu 6 years ago committed by Werner Lemberg
parent b110acba9e
commit d5522ac060
  1. 4
      ChangeLog
  2. 2
      src/cid/cidload.c

@ -1,3 +1,7 @@
2019-07-22 Weiyi Wu <w1w2y3@gmail.com>
* src/cid/cidload.c (cid_hex_to_binary): Fix typo (#56653).
2019-07-12 Werner Lemberg <wl@gnu.org>
[sfnt, winfonts] Avoid memory leaks in case of error (#56587).

@ -715,7 +715,7 @@
if ( ft_isdigit( *p ) )
val = (FT_Byte)( *p - '0' );
else if ( *p >= 'a' && *p <= 'f' )
val = (FT_Byte)( *p - 'a' );
val = (FT_Byte)( *p - 'a' + 10 );
else if ( *p >= 'A' && *p <= 'F' )
val = (FT_Byte)( *p - 'A' + 10 );
else if ( *p == ' ' ||

Loading…
Cancel
Save