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

This commit is contained in:
Weiyi Wu 2019-07-22 09:49:22 +02:00 committed by Werner Lemberg
parent b110acba9e
commit d5522ac060
2 changed files with 5 additions and 1 deletions

View File

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

View File

@ -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 == ' ' ||