diff options
author | eugeni <eugeni@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-08-26 20:09:54 +0000 |
---|---|---|
committer | eugeni <eugeni@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-08-26 20:09:54 +0000 |
commit | f5e2fac77bae2c9fbae8dd1b8cadb7a73015ba45 (patch) | |
tree | 3ed3042e77b17048e8f0dd4d8c3170eb74470c5b /libass | |
parent | 8bc66b700cfd9886cd125593e2c795f76852de84 (diff) |
Simplify ass_glyph_cache_reset().
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19551 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libass')
-rw-r--r-- | libass/ass_cache.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libass/ass_cache.c b/libass/ass_cache.c index 8409e2d622..64f915becf 100644 --- a/libass/ass_cache.c +++ b/libass/ass_cache.c @@ -190,7 +190,7 @@ void ass_glyph_cache_init(void) glyph_hash_size = 0; } -void ass_glyph_cache_reset(void) +void ass_glyph_cache_done(void) { int i; for (i = 0; i < GLYPH_HASH_SIZE; ++i) { @@ -203,12 +203,13 @@ void ass_glyph_cache_reset(void) item = next; } } + free(glyph_hash_root); glyph_hash_size = 0; } -void ass_glyph_cache_done(void) +void ass_glyph_cache_reset(void) { - ass_glyph_cache_reset(); - free(glyph_hash_root); + ass_glyph_cache_done(); + ass_glyph_cache_init(); } |