浏览代码

Fix possible memory leaks

Fix #18
master
Siwen Yu 6 年前
committed by ooxi
父节点
当前提交
8297961519
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. +2
    -0
      src/xml.c

+ 2
- 0
src/xml.c 查看文件

@@ -833,6 +833,7 @@ struct xml_node* xml_easy_child(struct xml_node* node, uint8_t const* child_name
/* Two children with the same name
*/
} else {
va_end(arguments);
return 0;
}
}
@@ -841,6 +842,7 @@ struct xml_node* xml_easy_child(struct xml_node* node, uint8_t const* child_name
/* No child with that name found
*/
if (!next) {
va_end(arguments);
return 0;
}
current = next;


正在加载...
取消
保存