summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRocky Bernstein <rockyb@users.sourceforge.net>2005-07-09 02:03:08 +0000
committerRocky Bernstein <rockyb@users.sourceforge.net>2005-07-09 02:03:08 +0000
commit0d44716e3126c22dd7e937a0cd6e94370e34f94c (patch)
treec8ae5f9f730ccbbc25e67f8eaa39ef11edfb3493
parent20bd52eb8bcc5c8b2f35e0a3aa5be8b95ffacd5e (diff)
downloadxine-lib-0d44716e3126c22dd7e937a0cd6e94370e34f94c.tar.gz
xine-lib-0d44716e3126c22dd7e937a0cd6e94370e34f94c.tar.bz2
Reduce possibility of an uninitialized variable.
CVS patchset: 7640 CVS date: 2005/07/09 02:03:08
-rw-r--r--src/input/vcd/xineplug_inp_vcd.c4
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 e3c11e09b..e994e413a 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.42 2005/06/26 05:20:29 rockyb Exp $
+ $Id: xineplug_inp_vcd.c,v 1.43 2005/07/09 02:03:08 rockyb Exp $
Copyright (C) 2002, 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>
@@ -1353,7 +1353,7 @@ vcd_class_get_autoplay_list (input_class_t *this_gen, int *num_files)
return NULL;
} else {
unsigned int i;
- int size;
+ int size = 0;
vcdinfo_item_enum_t itemtype =
autoplay2itemtype[my_vcd.player.default_autoplay];