From 131757a0443bac719091c4bedc0ecf2bb2cde2d8 Mon Sep 17 00:00:00 2001 From: Laurent Aimar Date: Sun, 31 Oct 2010 12:54:28 +0100 Subject: [PATCH] Removed invalid assignation while loading cue files. It has some random effects depending on the url (including use of uninitialized pointer). --- modules/access/vcd/cdrom.c | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/access/vcd/cdrom.c b/modules/access/vcd/cdrom.c index e9c97cc83d..3f260a2b4f 100644 --- a/modules/access/vcd/cdrom.c +++ b/modules/access/vcd/cdrom.c @@ -686,7 +686,6 @@ static int OpenVCDImage( vlc_object_t * p_this, const char *psz_dev, char filename[1024]; char type[16]; int i_temp = sscanf( line, "FILE \"%1023[^\"]\" %15s", filename, type ); - *p_pos = 0; switch( i_temp ) { case 2: -- 2.39.5