Hi again, Another problem appears in the new filter_restricted function from the xml consumer. It appears to corrupt some strings (random character appearing at the end), causing rendering issues in Kdenlive.
The patch below seems to solve it. regards jb diff --git a/src/modules/xml/consumer_xml.c b/src/modules/xml/consumer_xml.c index 2b0f6bc..5b9e65b 100644 --- a/src/modules/xml/consumer_xml.c +++ b/src/modules/xml/consumer_xml.c @@ -60,11 +60,11 @@ static int consumer_is_stopped( mlt_consumer this ); static void *consumer_thread( void *arg ); static void serialise_service( serialise_context context, mlt_service service, xmlNode *node ); -static void* filter_restricted( const char *in ) +static char* filter_restricted( const char *in ) { if ( !in ) return NULL; size_t n = strlen( in ); - char *out = calloc( 1, n ); + char *out = calloc( 1, n + 1); char *p = out; mbstate_t mbs; memset( &mbs, 0, sizeof(mbs) ); ------------------------------------------------------------------------------ Try before you buy = See our experts in action! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style Apps, more. Free future releases when you subscribe now! http://p.sf.net/sfu/learndevnow-dev2 _______________________________________________ Mlt-devel mailing list Mlt-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mlt-devel