]> git.sesse.net Git - vlc/commitdiff
We need to free the model name.
authorSteinar Gunderson <sgunderson@bigfoot.com>
Sun, 26 Sep 2010 22:04:44 +0000 (00:04 +0200)
committerSteinar Gunderson <sgunderson@bigfoot.com>
Sun, 26 Sep 2010 22:04:44 +0000 (00:04 +0200)
modules/access/sdi.cpp

index b9329e84fccd2d5e64abc254dbd51fb39fd8115e..f2b99cfdafd90aeba5b622bc40d871b8d1d4d4b8 100644 (file)
@@ -306,11 +306,13 @@ static int Open( vlc_object_t *p_this )
     if( result != S_OK )
     {
         msg_Err( p_demux, "Could not get model name" );
+        free( psz_model_name );
         Close( p_this );
         return VLC_EGENERIC;
     }
 
     msg_Dbg( p_demux, "Opened DeckLink PCI card %d (%s)", i_card_index, psz_model_name );
+    free( psz_model_name );
 
     if( p_sys->p_card->QueryInterface( IID_IDeckLinkInput, (void**)&p_sys->p_input) != S_OK )
     {