diff options
author | Joseph Jezak <josejx@gentoo.org> | 2004-10-17 23:43:09 +0000 |
---|---|---|
committer | Joseph Jezak <josejx@gentoo.org> | 2004-10-17 23:43:09 +0000 |
commit | 8179a7f3919dc8fd1cc5bbfbd7423b273016b06f (patch) | |
tree | 35bec80a796c5179a7f2e78694d0faf8f3e14598 /media-sound/sox/files | |
parent | fix for bug 67771 (Manifest recommit) (diff) | |
download | gentoo-2-8179a7f3919dc8fd1cc5bbfbd7423b273016b06f.tar.gz gentoo-2-8179a7f3919dc8fd1cc5bbfbd7423b273016b06f.tar.bz2 gentoo-2-8179a7f3919dc8fd1cc5bbfbd7423b273016b06f.zip |
Added -fsigned-char to sox-12.17.4-r2 and sox-12.17.5-r1 to fix bug #35745. Patch for wav segfaults in sox-12.17.5-r1, also bug #35745
Diffstat (limited to 'media-sound/sox/files')
-rw-r--r-- | media-sound/sox/files/sox-wav-segfault.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/media-sound/sox/files/sox-wav-segfault.patch b/media-sound/sox/files/sox-wav-segfault.patch new file mode 100644 index 000000000000..efdda66477f6 --- /dev/null +++ b/media-sound/sox/files/sox-wav-segfault.patch @@ -0,0 +1,11 @@ +--- wav.c 2004-08-25 23:12:11.660273688 -0400 ++++ sox-12.17.5/wav.c 2004-08-25 23:12:21.706746392 -0400 +@@ -1088,7 +1088,7 @@ + + if (ft->comment) + { +- free(ft->comment); ++ /* free(ft->comment); */ + ft->comment = 0; + } + |