Commit 70d6e3ee authored by Led's avatar Led

0.10.4-rc2

parent 57a230e3
...@@ -3,6 +3,7 @@ ver 0.10.4 (2004/5/26) ...@@ -3,6 +3,7 @@ ver 0.10.4 (2004/5/26)
2) Fix an infinte loop when writing to an interface and it has expired 2) Fix an infinte loop when writing to an interface and it has expired
3) Fix a segfault in decoding flac's 3) Fix a segfault in decoding flac's
4) Ingore CRC stuff in mp3's since some encoders did not compute the CRC correctly 4) Ingore CRC stuff in mp3's since some encoders did not compute the CRC correctly
5) Fix a segfault in processing faulty mp4 metadata
ver 0.10.3 (2004/4/2) ver 0.10.3 (2004/4/2)
1) Fix a segfault when a blanck line is sent from a client 1) Fix a segfault when a blanck line is sent from a client
......
...@@ -274,7 +274,7 @@ MpdTag * mp4TagDup(char * utf8file) { ...@@ -274,7 +274,7 @@ MpdTag * mp4TagDup(char * utf8file) {
int mp4MetadataFound = 0; int mp4MetadataFound = 0;
ret = mp4DataDup(utf8file,&mp4MetadataFound); ret = mp4DataDup(utf8file,&mp4MetadataFound);
if(!mp4MetadataFound) { if(ret && !mp4MetadataFound) {
MpdTag * temp = id3Dup(utf8file); MpdTag * temp = id3Dup(utf8file);
if(temp) { if(temp) {
temp->time = ret->time; temp->time = ret->time;
......
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