From 30910528c2d8e0f7ea0d3d57d33809cba86b9ce2 Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Sun, 7 Oct 2007 02:18:28 +0000 Subject: Initial revision --- id3v2/build/id3v2_malloc.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 id3v2/build/id3v2_malloc.patch diff --git a/id3v2/build/id3v2_malloc.patch b/id3v2/build/id3v2_malloc.patch new file mode 100644 index 00000000..f984689b --- /dev/null +++ b/id3v2/build/id3v2_malloc.patch @@ -0,0 +1,11 @@ +--- id3v2.cpp.orig 2004-05-04 20:30:15.000000000 +0200 ++++ id3v2.cpp 2007-10-07 04:13:53.000000000 +0200 +@@ -431,7 +431,7 @@ + if (*currentTrackNum == '/') + { + newTrackNum = (char *)malloc(strlen(currentTrackNum) +- + strlen(frameList[ii].data)); ++ + strlen(frameList[ii].data) + 2); + strcpy(newTrackNum, frameList[ii].data); + strcat(newTrackNum, currentTrackNum); + } -- cgit v1.2.3-65-gdbad