Merge branch 'off-by-one-fix' into 'master'

Fix off by one error with char_expandos

See merge request !11
(cherry picked from commit d5e23f97a7f98177bedc1842430a1199785bee20)
This commit is contained in:
Joseph Bisch 2017-03-31 20:06:14 +00:00 committed by Ailin Nemui
parent 2a53853f36
commit 8724b4a7a7

View File

@ -51,7 +51,7 @@ const char *current_expando = NULL;
static int timer_tag;
static EXPANDO_REC *char_expandos[255];
static EXPANDO_REC *char_expandos[256];
static GHashTable *expandos;
static char *last_sent_msg, *last_sent_msg_body;
static char *last_privmsg_from, *last_public_from;