Fix crash on switching to ICS xiangqi game
authorH.G. Muller <h.g.muller@hccnet.nl>
Fri, 26 Mar 2010 20:12:19 +0000 (21:12 +0100)
committerArun Persaud <arun@nubati.net>
Sat, 27 Mar 2010 18:37:24 +0000 (11:37 -0700)
commit3e0b95b9aa551c36024c8d390611f1c1db6375e2
treee7d942c597871376624b09f519305333a07abbc0
parent75a05d33bac8167aef83c37cd00ab094af2e2556
Fix crash on switching to ICS xiangqi game

The oldBoard was a local variable, and only squares of the old board
were initialized. This led to a crash if the copied board was enlarged,
and then displayed. The variable is now declared static, so the
uninitialized squares contain harmless zeros.
backend.c