summaryrefslogtreecommitdiff
path: root/lib-src/update-game-score.c
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2003-04-27 11:22:16 +0000
committerJuanma Barranquero <lekktu@gmail.com>2003-04-27 11:22:16 +0000
commitee435bae30d77414dd7c2b0d69fa1309030430e9 (patch)
tree665b6cc32af4de814e8260977aa2edf2ec385136 /lib-src/update-game-score.c
parent9d7ab3f0ee327299fd64587c13ba34ee2bf541dc (diff)
downloademacs-ee435bae30d77414dd7c2b0d69fa1309030430e9.tar.gz
(read_scores): Fix corruption of score files.
Diffstat (limited to 'lib-src/update-game-score.c')
-rw-r--r--lib-src/update-game-score.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib-src/update-game-score.c b/lib-src/update-game-score.c
index 55737c542d7..2a699b2550d 100644
--- a/lib-src/update-game-score.c
+++ b/lib-src/update-game-score.c
@@ -357,7 +357,9 @@ read_scores (filename, scores, count)
scorecount++;
if (scorecount >= cursize)
{
- ret = (struct score_entry *) realloc (ret, cursize *= 2);
+ cursize *= 2;
+ ret = (struct score_entry *)
+ realloc (ret, (sizeof (struct score_entry) * cursize));
if (!ret)
return -1;
}