Commit de773ab6 authored by Stéphane Borel's avatar Stéphane Borel

*A lock was not released;

parent c74ab57f
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* aout_spdif.c: AC3 passthrough output * aout_spdif.c: AC3 passthrough output
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: aout_spdif.c,v 1.27 2002/05/17 18:01:25 stef Exp $ * $Id: aout_spdif.c,v 1.28 2002/05/18 08:50:54 stef Exp $
* *
* Authors: Michel Kaempf <maxx@via.ecp.fr> * Authors: Michel Kaempf <maxx@via.ecp.fr>
* Stphane Borel <stef@via.ecp.fr> * Stphane Borel <stef@via.ecp.fr>
...@@ -165,6 +165,7 @@ void aout_SpdifThread( aout_thread_t * p_aout ) ...@@ -165,6 +165,7 @@ void aout_SpdifThread( aout_thread_t * p_aout )
msleep( m_frame_time ); msleep( m_frame_time );
vlc_mutex_lock( &p_aout->fifo[i_fifo].data_lock ); vlc_mutex_lock( &p_aout->fifo[i_fifo].data_lock );
} }
vlc_mutex_unlock( &p_aout->fifo[i_fifo].data_lock );
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment