diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-10-06 11:36:25 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-10-06 11:36:25 +0200 |
commit | 59bd2f5bfc486b107c4bd689bd65ea7d23e2fad0 (patch) | |
tree | 2331c04f638f4144eb26163d7585f54dd5542876 /include/fitz/hash.h | |
parent | 57575cabd50c4fdadb7de8ed5dec5702be7c3954 (diff) | |
download | mupdf-59bd2f5bfc486b107c4bd689bd65ea7d23e2fad0.tar.xz |
hashtable and object store memory bugs
Diffstat (limited to 'include/fitz/hash.h')
-rw-r--r-- | include/fitz/hash.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fitz/hash.h b/include/fitz/hash.h index 4229a02c..731e5fab 100644 --- a/include/fitz/hash.h +++ b/include/fitz/hash.h @@ -10,6 +10,6 @@ fz_error *fz_hashinsert(fz_hashtable *table, void *key, void *val); fz_error *fz_hashremove(fz_hashtable *table, void *key); int fz_hashlen(fz_hashtable *table); -void *fz_gethashkey(fz_hashtable *table, int idx); -void *fz_gethashval(fz_hashtable *table, int idx); +void *fz_hashgetkey(fz_hashtable *table, int idx); +void *fz_hashgetval(fz_hashtable *table, int idx); |