Commit 171e1e9d authored by Eric Wong's avatar Eric Wong

src/playlist.c: remove unnecessary strdup()

Yes, I know about what I said on IRC earlier, but this is an allocation + free inside a loop. git-svn-id: https://svn.musicpd.org/mpd/trunk@3953 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 10afe91c
......@@ -1461,12 +1461,13 @@ static int PlaylistIterFunc(FILE * fp, char * utf8file, void (*IterFunc)(FILE *f
slength = 0;
temp = fsCharsetToUtf8(s);
if(!temp) continue;
/* Needed to make a copy? */
if(!commentCharFound)
{
temp = strdup(temp);
IterFunc(fp, temp, &erroredFile);
free(temp);
/* using temp directly should be safe,
* for our current IterFunction set
* but just in case, we copy to s */
strcpy(s, temp);
IterFunc(fp, s, &erroredFile);
}
}
else if(slength==MAXPATHLEN) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment