[vlc-commits] libvlc_media_list: missing vlc_mutex_destroy
Thomas Guillem
git at videolan.org
Sun Jan 4 00:48:04 CET 2015
vlc/vlc-2.2 | branch: master | Thomas Guillem <thomas at gllm.fr> | Tue Dec 23 16:35:41 2014 +0000| [3d0ef0dbad29ba7d54eeeafbcf618cd9ef60f09b] | committer: Jean-Baptiste Kempf
libvlc_media_list: missing vlc_mutex_destroy
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
(cherry picked from commit 89b679a3fc71888b4aa87912eb32fae9e35d7178)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=3d0ef0dbad29ba7d54eeeafbcf618cd9ef60f09b
---
lib/media_list.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/media_list.c b/lib/media_list.c
index 1d57025..39bc354 100644
--- a/lib/media_list.c
+++ b/lib/media_list.c
@@ -220,6 +220,7 @@ void libvlc_media_list_release( libvlc_media_list_t * p_mlist )
}
vlc_mutex_destroy( &p_mlist->object_lock );
+ vlc_mutex_destroy( &p_mlist->refcount_lock );
vlc_array_clear( &p_mlist->items );
free( p_mlist );
More information about the vlc-commits
mailing list