expr: increase size of `varname`

This commit is contained in:
Martino Fontana 2023-11-18 23:53:19 +01:00
parent dc0814ae46
commit 5792eefdaf
1 changed files with 1 additions and 1 deletions

View File

@ -783,7 +783,7 @@ static struct expr *expr_create(const char *s, size_t len,
struct expr *p = &root;
/* Assign macro parameters */
for (int j = 0; j < vec_len(&arg.args); j++) {
char varname[12];
char varname[13];
snprintf(varname, sizeof(varname), "$%d", (j + 1));
struct expr_var *v = expr_get_var(vars, varname, strlen(varname));
struct expr ev = expr_varref(v);