diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-05-30 21:48:23 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-05-30 21:48:23 +0000 |
commit | 2f089e9e7c6bab61fbfcb285038b3dfe99bd82ea (patch) | |
tree | 8a334405408975111ee10ccd01bb8219b6a17478 /src/input/input_dvd.c | |
parent | 29a0b759ed5dcc9c0556055b78eea7ddf71b9f2f (diff) | |
download | xine-lib-2f089e9e7c6bab61fbfcb285038b3dfe99bd82ea.tar.gz xine-lib-2f089e9e7c6bab61fbfcb285038b3dfe99bd82ea.tar.bz2 |
Fixed demux_mpeg_block with detect by content bug. Fixed input_dvd/vcd
autplay list generated (need a NULL terminator). Fixed vcd input plugin,
now it seems to work.
CVS patchset: 106
CVS date: 2001/05/30 21:48:23
Diffstat (limited to 'src/input/input_dvd.c')
-rw-r--r-- | src/input/input_dvd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index 2f6ebc0c6..2d5826fc4 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.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: input_dvd.c,v 1.7 2001/05/30 02:09:24 f1rmb Exp $ + * $Id: input_dvd.c,v 1.8 2001/05/30 21:48:23 f1rmb Exp $ */ #ifdef HAVE_CONFIG_H @@ -491,6 +491,7 @@ static char **dvd_plugin_get_autoplay_list (input_plugin_t *this_gen, *nFiles = nFiles2; + this->filelist2[*nFiles] = NULL; close (fd); } else { |