From: ddennedy Date: Tue, 4 Dec 2007 07:16:44 +0000 (+0000) Subject: consumer_avformat.c: fix pointer passed to url_fclose() X-Git-Url: http://research.m1stereo.tv/gitweb?a=commitdiff_plain;h=64c51a40757305efd9a033024879ec08992e62a5;p=melted consumer_avformat.c: fix pointer passed to url_fclose() git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@1038 d19143bc-622f-0410-bfdd-b5b2a6649095 --- diff --git a/src/modules/avformat/consumer_avformat.c b/src/modules/avformat/consumer_avformat.c index ddce8bb..580956e 100644 --- a/src/modules/avformat/consumer_avformat.c +++ b/src/modules/avformat/consumer_avformat.c @@ -1150,7 +1150,7 @@ static void *consumer_thread( void *arg ) // Close the output file if (!(fmt->flags & AVFMT_NOFILE)) - url_fclose(&oc->pb); + url_fclose(oc->pb); // Clean up input and output frames if ( output )