diff options
author | Maria Matejka <mq@ucw.cz> | 2019-07-02 10:45:53 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2019-07-02 10:45:53 +0200 |
commit | b40c0f028f37086991fefa9197708ba8c7b3d571 (patch) | |
tree | 91721f9ab6b49c86c43e2c83e6acd628ae0c0bae /conf/cf-lex.l | |
parent | 30667d50417f926fc948905aaab3e679b416b2e1 (diff) |
Filter: Pre-evaluation of constant expressions
Diffstat (limited to 'conf/cf-lex.l')
-rw-r--r-- | conf/cf-lex.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l index 0aa9273f..38250d90 100644 --- a/conf/cf-lex.l +++ b/conf/cf-lex.l @@ -757,6 +757,7 @@ cf_pop_scope(void) { conf_this_scope->active = 0; conf_this_scope = conf_this_scope->next; + ASSERT(conf_this_scope); } |