Commit d05acf36 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Fix CID 138 release psz_unicode instead of psz_line. This resulted in use afer free error.

parent aa0ac481
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* old.c : Old playlist format import * old.c : Old playlist format import
***************************************************************************** *****************************************************************************
* Copyright (C) 2004 the VideoLAN team * Copyright (C) 2004 the VideoLAN team
* $Id$ * $Id: 9b9754e379d0619131fb309ee958042866a8be2f $
* *
* Authors: Clément Stenac <zorglub@videolan.org> * Authors: Clément Stenac <zorglub@videolan.org>
* *
...@@ -105,7 +105,7 @@ static int Demux( demux_t *p_demux) ...@@ -105,7 +105,7 @@ static int Demux( demux_t *p_demux)
PLAYLIST_END ); PLAYLIST_END );
free( psz_line ); free( psz_line );
LocaleFree( psz_line ); LocaleFree( psz_unicode );
} }
p_demux->b_die = VLC_TRUE; p_demux->b_die = VLC_TRUE;
......
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