]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
[core] scan-build: Function call argument is an uninitialized value - switch_xml_set_... 402/head
authorDragos Oancea <dragos@signalwire.com>
Fri, 21 Feb 2020 07:00:18 +0000 (07:00 +0000)
committerDragos Oancea <dragos@signalwire.com>
Fri, 21 Feb 2020 07:00:18 +0000 (07:00 +0000)
src/switch_xml.c

index f5bccd5d86cede0e22653ec76c9cf82d66275acf..42424ef3a335b80a43dc88a943066b9e566c6436 100644 (file)
@@ -2985,6 +2985,7 @@ SWITCH_DECLARE(switch_xml_t) switch_xml_set_attr(switch_xml_t xml, const char *n
                if (xml->attr == SWITCH_XML_NIL) {      /* first attribute */
                        xml->attr = (char **) switch_must_malloc(4 * sizeof(char *));
                        xml->attr[1] = switch_must_strdup("");  /* empty list of malloced names/vals */
+                       xml->attr[l + 1] = switch_must_strdup("");
                } else {
                        xml->attr = (char **) switch_must_realloc(xml->attr, (l + 4) * sizeof(char *));
                }