diff options
author | Tor Andersson <tor@ghostscript.com> | 2010-07-16 19:40:27 +0000 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2010-07-16 19:40:27 +0000 |
commit | ce198edad92aae935a04dd57fa7572e0969b9d97 (patch) | |
tree | 5b28a7d99fc0fa7b3b4acdb83c83b559ec50b063 /fitz | |
parent | 811ec408a7d8bdf2fef7d17ee2ad903ac1eafad4 (diff) | |
download | mupdf-ce198edad92aae935a04dd57fa7572e0969b9d97.tar.xz |
Plug memory leaks.
Diffstat (limited to 'fitz')
-rw-r--r-- | fitz/dev_list.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fitz/dev_list.c b/fitz/dev_list.c index c5c65017..74cb4139 100644 --- a/fitz/dev_list.c +++ b/fitz/dev_list.c @@ -338,6 +338,7 @@ fz_freedisplaylist(fz_displaylist *list) fz_freedisplaynode(node); node = next; } + fz_free(list); } void |