FireFly Media Server › Firefly Media Server Forums › Firefly Media Server › Feature Requests › Alternative database handling for “compilations” › Reply To: Alternative database handling for “compilations”
20/03/2006 at 12:40 PM
#4063
Participant
and:
+ if (song->orchestra && song->conductor) {
+ len = (int)strlen(song->artist) +
+ (int)strlen(sep) +
+ (int)strlen(song->title);
+ ptmp = (char*)malloc(len + 1);
+ if(ptmp) {
+ sprintf(ptmp,"%s%s%s",song->orchestra, sep, song->conductor);
+ song->artist = ptmp;
+ }
should probably be:
len = (int)strlen(song->orchestra) ... (int)strlen(song->conductor);
but I saw where you were going with it. I’ll probably drop a nightly now just to get fixes out, and finish up the compdir stuff tomorrow.