diff options
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/utils.c b/FICS/utils.c index 990bdfa..fd0a8e3 100644 --- a/FICS/utils.c +++ b/FICS/utils.c @@ -279,7 +279,7 @@ pcommand(int p, char *comstr, ...) PUBLIC void pprintf(int p, const char *format, ...) { - char tmp[10 * MAX_LINE_SIZE]; + char tmp[10 * MAX_LINE_SIZE] = { '\0' }; int retval; va_list ap; |