https://bugzilla.novell.com/show_bug.cgi?id=218753 Summary: sim-0.9.3-39: undefined C code Product: openSUSE 10.2 Version: Beta 1 plus Platform: All OS/Version: SuSE Linux 10.1 Status: NEW Severity: Normal Priority: P5 - None Component: Basesystem AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: dcb314@hotmail.com QAContact: qa@suse.de I just tried to compile package sim-0.9.3-39 with the GNU C compiler. It said msnclient.cpp:1161: warning: operation on 'i' may be undefined The source code is res += QChar((char)((fromHex(s[i++]) << 4) + fromHex(s[i]))); I have read the source code and I agree with the compiler. Suggest new code res += QChar((char)((fromHex(s[i]) << 4) + fromHex(s[i + 1]))); ++i; -- 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, or are watching someone who is.