conf parsing: Fix freeing section names upon section end.
This commit is contained in:
parent
fea6157df0
commit
e12981c028
1 changed files with 5 additions and 3 deletions
|
@ -35,7 +35,7 @@
|
||||||
static int yy_defer_accept = 1;
|
static int yy_defer_accept = 1;
|
||||||
|
|
||||||
struct TopConf *conf_cur_block;
|
struct TopConf *conf_cur_block;
|
||||||
static char *conf_cur_block_name;
|
static char *conf_cur_block_name = NULL;
|
||||||
|
|
||||||
static rb_dlink_list conf_items;
|
static rb_dlink_list conf_items;
|
||||||
|
|
||||||
|
@ -2010,11 +2010,13 @@ conf_start_block(char *block, char *name)
|
||||||
int
|
int
|
||||||
conf_end_block(struct TopConf *tc)
|
conf_end_block(struct TopConf *tc)
|
||||||
{
|
{
|
||||||
|
int ret = 0;
|
||||||
if(tc->tc_efunc)
|
if(tc->tc_efunc)
|
||||||
return tc->tc_efunc(tc);
|
ret = tc->tc_efunc(tc);
|
||||||
|
|
||||||
rb_free(conf_cur_block_name);
|
rb_free(conf_cur_block_name);
|
||||||
return 0;
|
conf_cur_block_name = NULL;
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue