From: lilo_booter Date: Wed, 29 Mar 2006 08:57:37 +0000 (+0000) Subject: + Bug Fix: Removes a memory leak on last alpha channel X-Git-Url: http://research.m1stereo.tv/gitweb?a=commitdiff_plain;h=8ea022814e4781856eea6767391274dfd5771a37;p=melted + Bug Fix: Removes a memory leak on last alpha channel git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@901 d19143bc-622f-0410-bfdd-b5b2a6649095 --- diff --git a/src/modules/gtk2/producer_pixbuf.c b/src/modules/gtk2/producer_pixbuf.c index c98fd41..1217bdf 100644 --- a/src/modules/gtk2/producer_pixbuf.c +++ b/src/modules/gtk2/producer_pixbuf.c @@ -410,6 +410,7 @@ static void producer_close( mlt_producer parent ) { producer_pixbuf this = parent->child; mlt_pool_release( this->image ); + mlt_pool_release( this->alpha ); parent->close = NULL; mlt_producer_close( parent ); mlt_properties_close( this->filenames );