ソースを参照

Fixed memory corruption caused by off-by-one error

master
ooxi 11年前
コミット
1593b36a4a
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/xml.c

+ 1
- 1
src/xml.c ファイルの表示

@@ -544,7 +544,7 @@ static struct xml_node* xml_parse_node(struct xml_parser* parser) {
*/
size_t old_elements = get_zero_terminated_array_elements(children);
size_t new_elements = old_elements + 1;
children = realloc(children, new_elements * sizeof(struct xml_node*));
children = realloc(children, (new_elements + 1) * sizeof(struct xml_node*));

/* Save child
*/


読み込み中…
キャンセル
保存