Commit b5380456 authored by Gildas Bazin's avatar Gildas Bazin

* modules/demux/mkv.cpp: fixed copy&paste bug.
parent 4598fd24
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* mkv.cpp : matroska demuxer * mkv.cpp : matroska demuxer
***************************************************************************** *****************************************************************************
* Copyright (C) 2003-2004 VideoLAN * Copyright (C) 2003-2004 VideoLAN
* $Id: mkv.cpp,v 1.56 2004/01/30 14:27:48 fenrir Exp $ * $Id: mkv.cpp,v 1.57 2004/03/01 17:36:26 gbazin Exp $
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
...@@ -1219,7 +1219,7 @@ static void Close( vlc_object_t *p_this ) ...@@ -1219,7 +1219,7 @@ static void Close( vlc_object_t *p_this )
#define tk p_sys->track[i_track] #define tk p_sys->track[i_track]
if( tk.fmt.psz_description ) if( tk.fmt.psz_description )
{ {
free( tk.fmt.psz_language ); free( tk.fmt.psz_description );
} }
if( tk.psz_codec ) if( tk.psz_codec )
{ {
......
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