mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-13 00:04:53 +00:00
Merged revisions 63254 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r63254 | oej | 2007-05-07 22:05:15 +0200 (Mon, 07 May 2007) | 2 lines Don't remove configuration from memory just because one section failed. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@63255 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -631,7 +631,6 @@ static int process_text_line(struct ast_config *cfg, struct ast_category **cat,
|
|||||||
} else if (!strcasecmp(cur, "+")) {
|
} else if (!strcasecmp(cur, "+")) {
|
||||||
*cat = category_get(cfg, catname, 1);
|
*cat = category_get(cfg, catname, 1);
|
||||||
if (!(*cat)) {
|
if (!(*cat)) {
|
||||||
ast_config_destroy(cfg);
|
|
||||||
if (newcat)
|
if (newcat)
|
||||||
ast_category_destroy(newcat);
|
ast_category_destroy(newcat);
|
||||||
ast_log(LOG_WARNING, "Category addition requested, but category '%s' does not exist, line %d of %s\n", catname, lineno, configfile);
|
ast_log(LOG_WARNING, "Category addition requested, but category '%s' does not exist, line %d of %s\n", catname, lineno, configfile);
|
||||||
|
Reference in New Issue
Block a user