off by one

This commit is contained in:
Ron Pedde 2004-04-06 01:56:00 +00:00
parent 65be62a4d0
commit dc9c7c96be

View File

@ -263,7 +263,7 @@ DAAP_BLOCK *daap_response_songlist(void) {
if(current->conductor)
artist_len += strlen(current->conductor);
artist_len += 3;
artist_len += 4;
artist=(char*)malloc(artist_len);
if(artist) {