소스 검색

Added length check to prevent wrapping.

master
Łukasz Sowa 11 년 전
부모
커밋
0f9f7089a5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/xml.c

+ 1
- 1
src/xml.c 파일 보기

@@ -536,7 +536,7 @@ static struct xml_node* xml_parse_node(struct xml_parser* parser) {
}

/* If tag ends with `/' it's self closing, skip content lookup */
if ('/' == tag_open->buffer[tag_open->length - 1]) {
if (tag_open->length > 0 && '/' == tag_open->buffer[tag_open->length - 1]) {
/* Drop `/'
*/
--tag_open->length;


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