diff options
author | Joseph Bisch <joseph.bisch@gmail.com> | 2017-03-31 15:37:48 -0400 |
---|---|---|
committer | Joseph Bisch <joseph.bisch@gmail.com> | 2017-03-31 15:37:48 -0400 |
commit | a4cc4e0ad7278835d976aa5e75ca2b42443f5bb1 (patch) | |
tree | 16493345e93e6b79a0135427fb42304804f4167a /src | |
parent | 3d4ba86a91b4f246665259c1e2100f5768e89237 (diff) | |
download | irssi-a4cc4e0ad7278835d976aa5e75ca2b42443f5bb1.zip |
Fix off by one error with char_expandos
Diffstat (limited to 'src')
-rw-r--r-- | src/core/expandos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/expandos.c b/src/core/expandos.c index 67aea837..2e4265d5 100644 --- a/src/core/expandos.c +++ b/src/core/expandos.c @@ -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; |