diff options
author | Ewald Snel <esnel@users.sourceforge.net> | 2002-04-28 10:39:47 +0000 |
---|---|---|
committer | Ewald Snel <esnel@users.sourceforge.net> | 2002-04-28 10:39:47 +0000 |
commit | 289653bee1b7f6be8dc58f80410b11184df155e4 (patch) | |
tree | 2f383de2d5eb76f63e759d009660882991636cb7 | |
parent | 791238994de94c0f5842006cabbcc2737f913d8f (diff) | |
download | xine-lib-289653bee1b7f6be8dc58f80410b11184df155e4.tar.gz xine-lib-289653bee1b7f6be8dc58f80410b11184df155e4.tar.bz2 |
Forgot the '&' in previous patch
CVS patchset: 1794
CVS date: 2002/04/28 10:39:47
-rw-r--r-- | src/libmpeg2/xine_decoder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libmpeg2/xine_decoder.c b/src/libmpeg2/xine_decoder.c index d31713612..91579459c 100644 --- a/src/libmpeg2/xine_decoder.c +++ b/src/libmpeg2/xine_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_decoder.c,v 1.30 2002/04/28 10:32:34 esnel Exp $ + * $Id: xine_decoder.c,v 1.31 2002/04/28 10:39:47 esnel Exp $ * * stuff needed to turn libmpeg2 into a xine decoder plugin */ @@ -144,7 +144,7 @@ static char *mpeg2dec_get_id(void) { static void mpeg2dec_dispose (video_decoder_t *this_gen) { mpeg2dec_decoder_t *this = (mpeg2dec_decoder_t *) this_gen; - pthread_mutex_destroy (this->lock); + pthread_mutex_destroy (&this->lock); free (this); } |