* src/type1/t1load.c (parse_subrs): Fix memory leak (#46744).

2.6.5
Werner Lemberg 9 years ago
parent 7ce6c43c3e
commit 9c1a2b0439
  1. 4
      ChangeLog
  2. 7
      src/type1/t1load.c

@ -1,3 +1,7 @@
2015-12-22 Werner Lemberg <wl@gnu.org>
* src/type1/t1load.c (parse_subrs): Fix memory leak (#46744).
2015-12-22 Werner Lemberg <wl@gnu.org>
[base] Make hash interface symmetric.

@ -1462,6 +1462,8 @@
if ( FT_NEW( hash ) )
goto Fail;
loader->subrs_hash = hash;
error = ft_hash_num_init( hash, memory );
if ( error )
goto Fail;
@ -1571,10 +1573,7 @@
}
if ( !loader->num_subrs )
{
loader->num_subrs = num_subrs;
loader->subrs_hash = hash;
}
loader->num_subrs = num_subrs;
return;

Loading…
Cancel
Save