diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-09-01 07:56:30 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-09-01 07:56:30 +0000 |
commit | a9eca52e27ef384106393b5865451685bb65b1f9 (patch) | |
tree | 33194482e59cba8ba5a64b6cae186a6cbee65e3e /media-sound/id3v2/files | |
parent | keepdir work,temp so they are not removed when upgrading, bug 62468 (Manifest... (diff) | |
download | gentoo-2-a9eca52e27ef384106393b5865451685bb65b1f9.tar.gz gentoo-2-a9eca52e27ef384106393b5865451685bb65b1f9.tar.bz2 gentoo-2-a9eca52e27ef384106393b5865451685bb65b1f9.zip |
Version bump closes bug #62102.
Diffstat (limited to 'media-sound/id3v2/files')
-rw-r--r-- | media-sound/id3v2/files/digest-id3v2-0.1.11 | 1 | ||||
-rw-r--r-- | media-sound/id3v2/files/id3v2-0.1.11-alpha.patch | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/media-sound/id3v2/files/digest-id3v2-0.1.11 b/media-sound/id3v2/files/digest-id3v2-0.1.11 new file mode 100644 index 000000000000..e1bc6fbb8cc4 --- /dev/null +++ b/media-sound/id3v2/files/digest-id3v2-0.1.11 @@ -0,0 +1 @@ +MD5 68afc3827cf01501dfb22949f901f1d8 id3v2-0.1.11.tar.gz 52427 diff --git a/media-sound/id3v2/files/id3v2-0.1.11-alpha.patch b/media-sound/id3v2/files/id3v2-0.1.11-alpha.patch new file mode 100644 index 000000000000..9cad2ac3e8e0 --- /dev/null +++ b/media-sound/id3v2/files/id3v2-0.1.11-alpha.patch @@ -0,0 +1,17 @@ +Prevent a segfault on alpha and any other arch that doesn't always get +zero-initialized automatics. Frankly the code in this segment looks +pretty broken to me, but I'm just fixing the segfault... + +07 Feb 2004 agriffis + +--- id3v2.cpp 2004-05-04 20:30:15.000000000 +0200 ++++ id3v2.cpp.alpha 2004-08-29 16:13:08.848513320 +0200 +@@ -423,7 +423,7 @@ + { + // check if there is a total track number and if we only have + // the track number for this file. In this case combine them. +- char *currentTrackNum, *newTrackNum; ++ char *currentTrackNum, *newTrackNum = NULL; + + if (pFrame != NULL) + { |