|
Bugzilla – Full Text Bug Listing |
| Summary: | festival-1.95-18: undefined C code | ||
|---|---|---|---|
| Product: | [openSUSE] SUSE LINUX 10.0 | Reporter: | David Binderman <dcb314> |
| Component: | Basesystem | Assignee: | Hendrik Vogelsang <hvogel> |
| Status: | RESOLVED FIXED | QA Contact: | E-mail List <qa-bugs> |
| Severity: | Minor | ||
| Priority: | P5 - None | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | SuSE Linux 10.1 | ||
| Whiteboard: | |||
| Found By: | Other | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
submitted. |
I just tried to compile package festival-1.95-18 with the GNU C compiler. It said rateconv.cc:387: warning: operation on "outidx" may be undefined The source code is fir_stereo(inp + inoffset + inbaseidx, coep + cycctr * firlen, firlen, outp + outidx++, outp + outidx++); I agree with the compiler. Suggest new code fir_stereo(inp + inoffset + inbaseidx, coep + cycctr * firlen, firlen, outp + outidx, outp + outidx + 1); outidx += 2;