Your message dated Tue, 11 Nov 2008 16:32:03 +0000 with message-id <[EMAIL PROTECTED]> and subject line Bug#504905: fixed in recite 1.0-8.2 has caused the Debian Bug report #504905, regarding recite: fix for phoneme to klatt conversion to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [EMAIL PROTECTED] immediately.) -- 504905: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504905 Debian Bug Tracking System Contact [EMAIL PROTECTED] with problems
--- Begin Message ---Package: recite Version: 1.0-8.1 Severity: important Tags: patch This patch fixes the root cause of #504200. Due to the missing lines, fricatives and plosives are assigned out-of-bounds offsets. (These offsets are used to index the Fricatives/Plosives/etc arrays.) diff --git a/phonemes/rules.c b/phonemes/rules.c index 6ea6892..6fc0e86 100644 --- a/phonemes/rules.c +++ b/phonemes/rules.c @@ -235,6 +235,11 @@ translate_phone(ph,offset) } if (ph <= FRICATIVES_END) { + *offset = ph - FRICATIVES_START; + return FRICATIVE_TYPE; + } + if (ph <= PLOSIVES_END) + { *offset = ph - PLOSIVES_START; return PLOSIVE_TYPE; }
--- End Message ---
--- Begin Message ---Source: recite Source-Version: 1.0-8.2 We believe that the bug you reported is fixed in the latest version of recite, which is due to be installed in the Debian FTP archive: recite_1.0-8.2.diff.gz to pool/main/r/recite/recite_1.0-8.2.diff.gz recite_1.0-8.2.dsc to pool/main/r/recite/recite_1.0-8.2.dsc recite_1.0-8.2_i386.deb to pool/main/r/recite/recite_1.0-8.2_i386.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Barry deFreese <[EMAIL PROTECTED]> (supplier of updated recite package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.8 Date: Tue, 11 Nov 2008 11:14:24 -0500 Source: recite Binary: recite Architecture: source i386 Version: 1.0-8.2 Distribution: unstable Urgency: medium Maintainer: Sam Hocevar (Debian packages) <[EMAIL PROTECTED]> Changed-By: Barry deFreese <[EMAIL PROTECTED]> Description: recite - English text speech synthesizer Closes: 504905 Changes: recite (1.0-8.2) unstable; urgency=medium . * Non-maintainer upload. * Real fix for segfaults on out-of-bounds. (Closes: #504905). + Thanks to Peter De Wachter for the patch. Checksums-Sha1: 70d9bbfead8395a150d7dae0bea94212e3bc5d84 943 recite_1.0-8.2.dsc 823e89f340dd901cb6655b50aea8b218682fb118 9253 recite_1.0-8.2.diff.gz 0c1ad03ec46a28664256459c12081d9a2599a177 49878 recite_1.0-8.2_i386.deb Checksums-Sha256: c122745b3c21299642d78dbd932d288d10d69c85ebbad74429a0c5e22c3769b7 943 recite_1.0-8.2.dsc 6cef574f268bcce6cf8921f7a8c720612630a1a3aaf84877b277fd0363e5e0c1 9253 recite_1.0-8.2.diff.gz 03f45c6414654f59e298c76b7216e744434c68e8adea6ff91f94f35b8fd49898 49878 recite_1.0-8.2_i386.deb Files: cf0534ffad7cf9d80965d61af227917c 943 sound optional recite_1.0-8.2.dsc 4f1f6a58e5462d1f422b64a751464b51 9253 sound optional recite_1.0-8.2.diff.gz 17fae47f2bdf57e17cf143bf74d4dca8 49878 sound optional recite_1.0-8.2_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAkkZsR8ACgkQ5ItltUs5T34lgQCfdmNmkRXrKrijgVOmbKOeT+3a 7nsAn1R7aSmEiFhaVmnHFlbXxLwyUURn =i5wQ -----END PGP SIGNATURE-----
--- End Message ---

