https://bugzilla.novell.com/show_bug.cgi?id=440127 Summary: libgdiplus0-2.0-11.18: broken code Product: openSUSE 11.1 Version: Factory Platform: All OS/Version: openSUSE 11.0 Status: NEW Severity: Normal Priority: P5 - None Component: Other AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: dcb314@hotmail.com QAContact: qa@suse.de Found By: --- I just tried to build the Suse Linux package libgdiplus0-2.0-11.18 and the compiler said region-bitmap.c:359: warning: operation on 'pos' may be undefined region-bitmap.c:359: warning: operation on 'pos' may be undefined region-bitmap.c:359: warning: operation on 'pos' may be undefined The source code is BYTE combine = source [pos++] | source [pos++] | source [pos++] | source [pos]; I agree with the compiler. The order of evaluation isn't left to right. Suggest code rework. Maybe BYTE combine = source [ pos] | source [ pos + 1] | source [ pos + 2] | source [pos + 3]; -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.