Bugzilla – Bug 239169
pachi-1.0-65: array subscript is below array bounds
Last modified: 2007-01-26 11:37:58 UTC
I just tried to compile package pachi-1.0-65 with the new GNU compiler version 4.3 snapshot 20070119 The compiler said game.c:84: warning: array subscript is below array bounds The source code is if(y < 0) if(roommap[x][y-1]==stage) I agree with the compiler. Suggest new code if(y > 0) if(roommap[x][y-1]==stage)
*** This bug has been marked as a duplicate of bug 235591 ***