Browse Source

lib: fix object reference leak, fix test suite

pull/21/head
Rémi Denis-Courmont 12 years ago
parent
commit
b9b9d7fe3e
  1. 1
      lib/audio.c

1
lib/audio.c

@ -150,6 +150,7 @@ libvlc_audio_output_device_enum( libvlc_media_player_t *mp )
char **values, **texts;
int n = aout_DevicesList( aout, &values, &texts );
vlc_object_release( aout );
if( n < 0 )
goto err;

Loading…
Cancel
Save