From f5e2fac77bae2c9fbae8dd1b8cadb7a73015ba45 Mon Sep 17 00:00:00 2001 From: eugeni Date: Sat, 26 Aug 2006 20:09:54 +0000 Subject: Simplify ass_glyph_cache_reset(). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19551 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libass/ass_cache.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'libass/ass_cache.c') 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(); } -- cgit v1.2.3