mirror of
https://github.com/irssi/irssi.git
synced 2026-08-18 08:02:13 +02:00
Fix off by one error with char_expandos
This commit is contained in:
parent
3d4ba86a91
commit
a4cc4e0ad7
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ const char *current_expando = NULL;
|
||||||
|
|
||||||
static int timer_tag;
|
static int timer_tag;
|
||||||
|
|
||||||
static EXPANDO_REC *char_expandos[255];
|
static EXPANDO_REC *char_expandos[256];
|
||||||
static GHashTable *expandos;
|
static GHashTable *expandos;
|
||||||
static char *last_sent_msg, *last_sent_msg_body;
|
static char *last_sent_msg, *last_sent_msg_body;
|
||||||
static char *last_privmsg_from, *last_public_from;
|
static char *last_privmsg_from, *last_public_from;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue