浏览代码

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;


正在加载...
取消
保存