Skip to content
Snippets Groups Projects
Commit cd74836d authored by Steve Murphy's avatar Steve Murphy
Browse files

This solves bug 8342, whereby a crash occurs under certain circumstances while...

This solves bug 8342, whereby a crash occurs under certain circumstances while reading a config file with comments-- a call to CB_ADD shouldn't happen if withcomments is zero

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@47577 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 24afed6a
Branches
Tags
No related merge requests found
......@@ -905,7 +905,7 @@ static struct ast_config *config_text_file_load(const char *database, const char
new_buf = comment_p + 1;
}
}
if( comment && !process_buf )
if( withcomments && comment && !process_buf )
{
CB_ADD(buf); /* the whole line is a comment, store it */
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment