Commit f1b7f5e1 authored by Antoine Cellerier's avatar Antoine Cellerier

* backport [20618] to stable branch (in case we release it one day).

parent 088eaad7
$Id$
Changes between 0.8.6c and 0.8.6d (if we ever release it):
----------------------------------------------------------
Various bugfixes:
* Fix invalid free in bookmarks loading code.
Changes between 0.8.6b and 0.8.6c:
----------------------------------
......
dnl Autoconf settings for vlc
AC_INIT(vlc,0.8.6c)
AC_INIT(vlc,0.8.6d)
VERSION_MAJOR="0"
VERSION_MINOR="8"
VERSION_REVISION="6"
VERSION_EXTRA="c"
VERSION_EXTRA="d"
CONFIGURE_LINE="$0 $*"
CODENAME="Janus"
......
......@@ -201,7 +201,7 @@ static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item,
*psz_end = 0;
if( !strncmp( psz_start, "name=", 5 ) )
{
p_seekpoint->psz_name = psz_start + 5;
p_seekpoint->psz_name = strdup(psz_start + 5);
}
else if( !strncmp( psz_start, "bytes=", 6 ) )
{
......
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