mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-02 19:16:15 +00:00
Coverity Report: Fix issues for error type CHECKED_RETURN for core
(issue ASTERISK-19658) Reported by: Matt Jordan Review: https://reviewboard.asterisk.org/r/1905/ ........ Merged revisions 366094 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 366106 from http://svn.asterisk.org/svn/asterisk/branches/10 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@366126 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1715,7 +1715,11 @@ static void xmldoc_parse_parameter(struct ast_xml_node *fixnode, const char *tab
|
||||
ast_xml_free_attr(paramname);
|
||||
printed = 1;
|
||||
}
|
||||
xmldoc_parse_para(node, internaltabs, "\n", buffer);
|
||||
if (xmldoc_parse_para(node, internaltabs, "\n", buffer)) {
|
||||
/* If anything ever goes in below this condition before the continue below,
|
||||
* we should probably continue immediately. */
|
||||
continue;
|
||||
}
|
||||
continue;
|
||||
} else if ((xmldoc_parse_specialtags(node, internaltabs, "\n", buffer))) {
|
||||
continue;
|
||||
|
Reference in New Issue
Block a user