diff options
Diffstat (limited to 'FICS/playerdb.c')
| -rw-r--r-- | FICS/playerdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FICS/playerdb.c b/FICS/playerdb.c index a382c8e..2ef68ea 100644 --- a/FICS/playerdb.c +++ b/FICS/playerdb.c @@ -3054,8 +3054,8 @@ player_clear_messages(int p) PUBLIC int player_search(int p, char *name) { - char *buffer[1000]; - char pdir[MAX_FILENAME_SIZE]; + char *buffer[1000] = { NULL }; + char pdir[MAX_FILENAME_SIZE] = { '\0' }; int p1, count; // Exact match with connected player? |
