1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-14 03:04:17 -04:00

Fix off by one error with char_expandos

This commit is contained in:
Joseph Bisch 2017-03-31 15:37:48 -04:00
parent 3d4ba86a91
commit a4cc4e0ad7
No known key found for this signature in database
GPG Key ID: CF08FAC339AB7E8E

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;