regex match: snprintf → ssnprintf
authorFlorian Forster <ff@octo.it>
Tue, 13 Sep 2016 18:52:58 +0000 (20:52 +0200)
committerGitHub <noreply@github.com>
Tue, 13 Sep 2016 18:52:58 +0000 (20:52 +0200)
ssnprintf() ensures null termination, which is especially important when using "%s" in the format.

src/match_regex.c

index 5c75a63..dd8319e 100644 (file)
@@ -250,7 +250,7 @@ static int mr_config_add_meta_regex (llist_t **meta, /* {{{ */
                llist_append (*meta, entry);
        }
 
-       snprintf (buffer, sizeof (buffer), "%s `%s'", ci->key, meta_key);
+       ssnprintf (buffer, sizeof (buffer), "%s `%s'", ci->key, meta_key);
        /* Can't pass &entry->value into mr_add_regex, so copy in/out. */
        re_head = entry->value;
        status = mr_add_regex (&re_head, ci->values[1].value.string, buffer);