|
Bugzilla – Full Text Bug Listing |
| Summary: | control-center-1.4.0.5-83: undefined C code | ||
|---|---|---|---|
| Product: | [openSUSE] SUSE LINUX 10.0 | Reporter: | David Binderman <dcb314> |
| Component: | Basesystem | Assignee: | Ladislav Michnovic <lmichnovic> |
| Status: | RESOLVED FIXED | QA Contact: | E-mail List <qa-bugs> |
| Severity: | Normal | ||
| 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: | --- |
I'll take a look. Thank you for reporting. Fixed, package submited. *** Bug 163561 has been marked as a duplicate of this bug. *** |
I just tried to compile package control-center-1.4.0.5-83 with the GNU C compiler. It said render-background.c:130: warning: operation on "pixels" may be undefined The source code is line[i] = *(pixels++) + *(pixels++) + *(pixels++); I agree with the compiler. This is undefined C code. Suggest new code line[i] = pixels[ 0] + pixels[ 1] + pixels[ 2]; pixels += 3;