X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_consumer.c;h=5ff7f5f73f39f4cfb28cdd28bec1351b9840b658;hb=6336039a203c6496691784682f9ad56eb13abcc3;hp=f263a205c8afaa85eaa840e2cb026c1c0e5a725a;hpb=d8eef875f19feb30549855d3695a91df72c5c60f;p=melted diff --git a/src/framework/mlt_consumer.c b/src/framework/mlt_consumer.c index f263a20..5ff7f5f 100644 --- a/src/framework/mlt_consumer.c +++ b/src/framework/mlt_consumer.c @@ -63,8 +63,15 @@ int mlt_consumer_connect( mlt_consumer this, mlt_service producer ) void mlt_consumer_close( mlt_consumer this ) { - if ( this->close != NULL ) - this->close( this ); + // Get the childs close function + void ( *consumer_close )( ) = this->close; + + // Make sure it only gets called once + this->close = NULL; + + // Call the childs close if available + if ( consumer_close != NULL ) + consumer_close( this ); else mlt_service_close( &this->parent ); }