In gtkprefs.c, at line 1726, the compiler detects that ar[3] is left uninitialized in the following piece of code :

            for (j = 0; j < 3; j++)
                ar[j] = newPrefs.aanBoardColour[i][j] / 255.0;

But should it be "for (j = 0; j < 4; j++)" like in similar code at line 862, or should ar[3] be set to 0 like at line 944 ?

_______________________________________________
Bug-gnubg mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-gnubg

Reply via email to