소스 검색

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;


불러오는 중...
취소
저장