1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-08-08 17:42:14 +03:00

- tree.c: patch from Bjorn Reese on xmlBufferCCat

Daniel
This commit is contained in:
Daniel Veillard
2001-01-26 09:32:39 +00:00
parent 8e19990680
commit 65c295d554
3 changed files with 27 additions and 18 deletions

1
tree.c
View File

@@ -4714,6 +4714,7 @@ xmlBufferCCat(xmlBufferPtr buf, const char *str) {
}
buf->content[buf->use++] = *cur;
}
buf->content[buf->use] = 0;
}
/**