mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-19 19:52:48 +00:00
Consider a comment to start with ;-- but not if there are more dashes (bug #2977)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4389 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
2
config.c
2
config.c
@@ -532,7 +532,7 @@ static struct ast_config *__ast_load(const char *configfile, struct ast_config *
|
|||||||
/* Yuck, gotta memmove */
|
/* Yuck, gotta memmove */
|
||||||
memmove(comment_p - 1, comment_p, strlen(comment_p) + 1);
|
memmove(comment_p - 1, comment_p, strlen(comment_p) + 1);
|
||||||
new_buf = comment_p;
|
new_buf = comment_p;
|
||||||
} else if(comment_p[1] == COMMENT_TAG && comment_p[2] == COMMENT_TAG) {
|
} else if(comment_p[1] == COMMENT_TAG && comment_p[2] == COMMENT_TAG && (comment_p[3] != '-')) {
|
||||||
/* Meta-Comment start detected ";--" */
|
/* Meta-Comment start detected ";--" */
|
||||||
if (comment < MAX_NESTED_COMMENTS) {
|
if (comment < MAX_NESTED_COMMENTS) {
|
||||||
*comment_p = '\0';
|
*comment_p = '\0';
|
||||||
|
Reference in New Issue
Block a user