diff options
Diffstat (limited to 'src/demuxers/demux_voc.c')
-rw-r--r-- | src/demuxers/demux_voc.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/demuxers/demux_voc.c b/src/demuxers/demux_voc.c index f761f3123..6c9c74ac7 100644 --- a/src/demuxers/demux_voc.c +++ b/src/demuxers/demux_voc.c @@ -23,7 +23,7 @@ * It will only play that block if it is PCM data. More variations will be * supported as they are encountered. * - * $Id: demux_voc.c,v 1.2 2002/08/12 03:53:49 tmmm Exp $ + * $Id: demux_voc.c,v 1.3 2002/09/04 23:31:08 guenter Exp $ * */ @@ -218,7 +218,8 @@ static int demux_voc_open(demux_plugin_t *this_gen, xine_strdupa(valid_ends, (this->config->register_string(this->config, "mrl.ends_voc", VALID_ENDS, _("valid mrls ending for voc demuxer"), - NULL, NULL, NULL))); while((m = xine_strsep(&valid_ends, ",")) != NULL) { + NULL, 10, NULL, NULL))); + while((m = xine_strsep(&valid_ends, ",")) != NULL) { while(*m == ' ' || *m == '\t') m++; @@ -470,7 +471,7 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) { (void*) this->config->register_string(this->config, "mrl.ends_voc", VALID_ENDS, _("valid mrls ending for voc demuxer"), - NULL, NULL, NULL); + NULL, 10, NULL, NULL); this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION; this->demux_plugin.open = demux_voc_open; |