changeset 1792:905c09049fe6

Oops, forgot to free the buffer allocated in the BDP5 decoder. Fixed.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 13 Jun 2018 03:27:53 +0300
parents ae53df2156ed
children b05de6799e5f
files tools/lib64fmts.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/tools/lib64fmts.c	Wed Jun 13 03:22:49 2018 +0300
+++ b/tools/lib64fmts.c	Wed Jun 13 03:27:53 2018 +0300
@@ -214,6 +214,7 @@
     res = dmC64DecodeGenericBMP(img, &mem, fmt);
 
 out:
+    dmGrowBufFree(&tmp);
     dmGrowBufFree(&mem);
     return res;
 }