*** update-game-score.c.~1.15.~ Tue Feb 4 15:06:56 2003 --- update-game-score.c Fri Apr 25 22:10:18 2003 *************** *** 357,363 **** scorecount++; if (scorecount >= cursize) { ! ret = (struct score_entry *) realloc (ret, cursize *= 2); if (!ret) return -1; } --- 357,365 ---- scorecount++; if (scorecount >= cursize) { ! cursize *= 2; ! ret = (struct score_entry *) ! realloc (ret, (sizeof (struct score_entry) * cursize)); if (!ret) return -1; }