]> git.sesse.net Git - mlt/commitdiff
Fix superfluous assigment in initialization (coverity-1026782).
authorDan Dennedy <dan@dennedy.org>
Sun, 2 Jun 2013 21:35:23 +0000 (14:35 -0700)
committerDan Dennedy <dan@dennedy.org>
Sun, 2 Jun 2013 21:54:42 +0000 (14:54 -0700)
src/modules/avsync/producer_blipflash.c

index 755c14ff32c255747796ede6963f6f7c23f4a312..3f8eadf6b2ffd4c09e78daccacca709a53ffc1d5 100644 (file)
@@ -110,7 +110,7 @@ static void fill_image( mlt_properties producer_properties, char* color, uint8_t
 
        int new_size = mlt_image_format_size( format, width, height, NULL );
        int old_size = 0;
-       uint8_t* image = image = mlt_properties_get_data( producer_properties, color, &old_size );
+       uint8_t* image = mlt_properties_get_data( producer_properties, color, &old_size );
 
        if( !image || new_size > old_size )
        {