Bugzilla – Attachment #27170: Proposed patch by nadvornik@suse.cz for bug #64323
-- playlist.c
++ playlist.c
if ((playlist->listnamedir) && (line[0]!='/') && (line[0]!='\\')
&& (strncasecmp(line, "http://", 7)) && (strncasecmp(line,
"ftp://",6)) ){
strcpy (linetmp, playlist->listnamedir);
strncpy (linetmp, playlist->listnamedir, 1023);
strcat (linetmp, line);
linetmp[1023] = 0;
strncat (linetmp, line, 1023 - strlen(linetmp));
strcpy (line, linetmp);
}
return 1;