stream_dvd: fix .ifo redirection

This was blatantly broken after stream->url was changed to talloc.
This commit is contained in:
wm4 2013-07-30 16:06:06 +02:00
parent 29b0be400c
commit 06996810bf
1 changed files with 1 additions and 2 deletions

View File

@ -1085,8 +1085,7 @@ static int ifo_stream_open (stream_t *stream, int mode, void *opts)
spriv->title=1;
free(filename);
free(stream->url);
stream->url=strdup("dvd://");
stream->url=talloc_strdup(stream, "dvd://");
return open_s(stream, mode, spriv);
}