diff options
| author | Markus Uhlin <markus@nifty-networks.net> | 2026-04-08 02:20:53 +0200 |
|---|---|---|
| committer | Markus Uhlin <markus@nifty-networks.net> | 2026-04-08 02:20:53 +0200 |
| commit | 3dcdc1b544cad12fe42ce76a0d3ff6346d7623c7 (patch) | |
| tree | 759cb34b72575c61e82f4d62536e569f408d99bc /FICS | |
| parent | 417de0bdfedecc2b5d9c406eb83a9d22d479c847 (diff) | |
player_simul_over: set 'tmp' to zero
Diffstat (limited to 'FICS')
| -rw-r--r-- | FICS/playerdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/playerdb.c b/FICS/playerdb.c index 03450c6..8c1e1c0 100644 --- a/FICS/playerdb.c +++ b/FICS/playerdb.c @@ -2652,7 +2652,7 @@ player_num_results(int p, int result) PUBLIC int player_simul_over(int p, int g, int result) { - char tmp[1024]; + char tmp[1024] = { '\0' }; int on, ong, p1, which = -1, won; for (won = 0; won < parray[p].simul_info.numBoards; won++) { |
