소스 검색

Fix for xml_easy_content() for nodes with no content.

Instead of crushing xml_easy_content() returns now NULL when there's no content.
master
Łukasz Sowa 11 년 전
부모
커밋
e37d916dfc
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. +3
    -0
      src/xml.c

+ 3
- 0
src/xml.c 파일 보기

@@ -143,6 +143,9 @@ static _Bool xml_string_equals(struct xml_string* a, struct xml_string* b) {
* [PRIVATE]
*/
static uint8_t* xml_string_clone(struct xml_string* s) {
if (!s)
return 0;

uint8_t* clone = calloc(s->length + 1, sizeof(uint8_t));

xml_string_copy(s, clone, s->length);


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