diff options
| author | Markus Uhlin <markus@nifty-networks.net> | 2026-04-04 02:15:56 +0200 |
|---|---|---|
| committer | Markus Uhlin <markus@nifty-networks.net> | 2026-04-04 02:15:56 +0200 |
| commit | 9d7a517511831b75559c039b2eaae1a3d8f176ac (patch) | |
| tree | 73ea80c51f99b37aa29940a8dc86fd03e8f27b9d /FICS/comproc.c | |
| parent | 06e795a034dc3ef9ba0980b868686b5b3e15509f (diff) | |
com_stats_andify: increased the 'tmp' buffer size
Diffstat (limited to 'FICS/comproc.c')
| -rw-r--r-- | FICS/comproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/comproc.c b/FICS/comproc.c index b11f564..77c8f65 100644 --- a/FICS/comproc.c +++ b/FICS/comproc.c @@ -391,7 +391,7 @@ FindPlayer(int p, char *name, int *p1, int *connected) PRIVATE void com_stats_andify(int *numbers, int p_howmany, char *dest, size_t dsize) { - char tmp[10] = { '\0' }; + char tmp[40] = { '\0' }; *dest = '\0'; |
