View | Details | Raw Unified | Return to bug 64323
Collapse All | Expand All

(-)file_not_specified_in_diff (-3 / +5 lines)
Line  Link Here
0
-- playlist.c
0
++ playlist.c
Lines 110-117 Link Here
110
		if ((playlist->listnamedir) && (line[0]!='/') && (line[0]!='\\') 
110
		if ((playlist->listnamedir) && (line[0]!='/') && (line[0]!='\\') 
111
                    && (strncasecmp(line, "http://", 7)) && (strncasecmp(line, 
111
                    && (strncasecmp(line, "http://", 7)) && (strncasecmp(line, 
112
"ftp://",6)) ){
112
"ftp://",6)) ){
113
		    strcpy (linetmp, playlist->listnamedir);
113
		    strncpy (linetmp, playlist->listnamedir, 1023);
114
		    strcat (linetmp, line);
114
		    linetmp[1023] = 0;
115
		    strncat (linetmp, line, 1023 - strlen(linetmp));
116
		    linetmp[1023] = 0;
115
		    strcpy (line, linetmp);
117
		    strcpy (line, linetmp);
116
		}
118
		}
117
		return 1;
119
		return 1;

Return to bug 64323