diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2020-11-24 04:09:11 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2020-11-24 04:09:11 +0100 |
commit | 30b846826905b4da76f59a212a31928bd55e9783 (patch) | |
tree | b8dcc75f7e76a71df397ed240e826fdefaebf0fb /conf/cf-lex.l | |
parent | 1678bc07467e6d977fc2f6bf830274ca92e0a6e5 (diff) |
Minor cleanups with cfg_allocz()
Also fixes some more failed asserts due to add_tail().
Diffstat (limited to 'conf/cf-lex.l')
-rw-r--r-- | conf/cf-lex.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l index 9ea05e9d..05288b1a 100644 --- a/conf/cf-lex.l +++ b/conf/cf-lex.l @@ -737,7 +737,7 @@ cf_lex_init(int is_cli, struct config *c) void cf_push_scope(struct symbol *sym) { - struct sym_scope *s = cfg_alloc(sizeof(struct sym_scope)); + struct sym_scope *s = cfg_allocz(sizeof(struct sym_scope)); s->next = conf_this_scope; conf_this_scope = s; |