]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix array size
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 26 Sep 2019 08:58:33 +0000 (09:58 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 26 Sep 2019 08:58:33 +0000 (09:58 +0100)
src/libstat/tokenizers/tokenizers.c

index 000f2033c7b0f028ac938879c18071019de557c4..acd3c57392ad39d68b2dbf24d24aebbd5ff66955 100644 (file)
@@ -39,7 +39,7 @@ typedef gboolean (*token_get_function) (rspamd_stat_token_t * buf, gchar const *
                rspamd_stat_token_t * token,
                GList **exceptions, gsize *rl, gboolean check_signature);
 
-const gchar t_delimiters[255] = {
+const gchar t_delimiters[256] = {
        0, 0, 0, 0, 0, 0, 0, 0, 0, 1,
        1, 0, 0, 1, 0, 0, 0, 0, 0, 0,
        0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
@@ -65,7 +65,7 @@ const gchar t_delimiters[255] = {
        0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
        0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
        0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
-       0, 0, 0, 0, 0
+       0, 0, 0, 0, 0, 0
 };
 
 /* Get next word from specified f_str_t buf */