]> git.sesse.net Git - vlc/blobdiff - modules/audio_output/oss.c
Fix potential memleak.
[vlc] / modules / audio_output / oss.c
index 27359c74529b473557780cfc0b25c8ae7621ddfa..929aeacb7e6faacd16f17f787bf5fa0c2d626c49 100644 (file)
@@ -299,6 +299,7 @@ static int Open( vlc_object_t *p_this )
     if( p_sys->i_fd < 0 )
     {
         msg_Err( p_aout, "cannot open audio device (%s)", psz_device );
+        free( psz_device );
         free( p_sys );
         return VLC_EGENERIC;
     }