diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-07-25 17:42:55 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-07-25 17:42:55 +0000 |
commit | bee1211f44cf805a97beb1d5cdbf64c2dfa0585f (patch) | |
tree | 07066da81fbf1cb05d6c92846c880183aefd80e1 | |
parent | 00bb5125d8e4b7d23ff2b0012f58e5b062ab1d12 (diff) | |
download | xine-lib-bee1211f44cf805a97beb1d5cdbf64c2dfa0585f.tar.gz xine-lib-bee1211f44cf805a97beb1d5cdbf64c2dfa0585f.tar.bz2 |
the worst case we will write to this buffer is larger
CVS patchset: 6851
CVS date: 2004/07/25 17:42:55
-rw-r--r-- | src/input/vcd/xineplug_inp_vcd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/vcd/xineplug_inp_vcd.c b/src/input/vcd/xineplug_inp_vcd.c index 2020b6bc6..926a303c2 100644 --- a/src/input/vcd/xineplug_inp_vcd.c +++ b/src/input/vcd/xineplug_inp_vcd.c @@ -1,5 +1,5 @@ /* - $Id: xineplug_inp_vcd.c,v 1.24 2004/07/22 14:12:20 mroi Exp $ + $Id: xineplug_inp_vcd.c,v 1.25 2004/07/25 17:42:55 mroi Exp $ Copyright (C) 2002, 2003, 2004 Rocky Bernstein <rocky@panix.com> @@ -290,7 +290,7 @@ static bool vcd_build_mrl_list(vcd_input_class_t *class, char *vcd_device) { - char mrl[MRL_PREFIX_LEN+MAX_DEVICE_LEN+(sizeof("@E")-1)+10]; + char mrl[MRL_PREFIX_LEN+MAX_DEVICE_LEN+(sizeof("@E")-1)+12]; vcdplayer_input_t *player; unsigned int n, i=0; unsigned int num_entries; |