https://bugzilla.novell.com/show_bug.cgi?id=851543 https://bugzilla.novell.com/show_bug.cgi?id=851543#c4 Marcus Meissner <meissner@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |meissner@suse.com --- Comment #4 from Marcus Meissner <meissner@suse.com> 2013-11-22 10:09:26 UTC --- well, there is a array overrun in genesys_gl646.c: while (sensor_master[i].sensor != -1 && i < nb) the array index should be checked before the array is indexed. e.g. like this: while (i < nb && sensor_master[i].sensor != -1) the same bad pattern appears more often in this file, all of them need to be fixed. (that it triggers in 13.1 is probably due to compiler optimizing this differently.) -- 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.