summaryrefslogtreecommitdiff
path: root/draw
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2010-06-20 22:35:12 +0200
committerTor Andersson <tor@ghostscript.com>2010-06-20 22:35:12 +0200
commit5c01ac7712307bb7d1064eacf79befcbe625e2a2 (patch)
treed04dff771f746361c7e973e5869653275aee55ea /draw
parentb282908b5e1660cd44db89ddbe5ab9af03185295 (diff)
downloadmupdf-5c01ac7712307bb7d1064eacf79befcbe625e2a2.tar.xz
Rename the remaining non-reference-counted free functions to free instead of drop.
Diffstat (limited to 'draw')
-rw-r--r--draw/glyphcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/draw/glyphcache.c b/draw/glyphcache.c
index 0f8abf75..e98373d9 100644
--- a/draw/glyphcache.c
+++ b/draw/glyphcache.c
@@ -59,7 +59,7 @@ void
fz_freeglyphcache(fz_glyphcache *cache)
{
fz_evictglyphcache(cache);
- fz_drophash(cache->hash);
+ fz_freehash(cache->hash);
fz_free(cache);
}