From: malc Date: Tue, 4 Dec 2012 14:43:18 +0000 (+0400) Subject: Don't leak memory in PBO case X-Git-Tag: v14~88 X-Git-Url: https://repo.or.cz/w/llpp.git/commitdiff_plain/65180dedca52261209139848fd516a791cc08a8d Don't leak memory in PBO case --- diff --git a/link.c b/link.c index fb25bed..b099460 100644 --- a/link.c +++ b/link.c @@ -591,6 +591,7 @@ static void freetile (struct tile *tile) } else { free (tile->pbo); + fz_drop_pixmap (state.ctx, tile->pixmap); } free (tile); }