diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2003-10-17 12:43:59 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2003-10-17 12:43:59 +0000 |
commit | 4aede2e66b88ad782b506341c6ea40554456a8b4 (patch) | |
tree | 7b9299eb8475ae32cc4ea6aa6bb78106073b4f28 /relaxng.c | |
parent | 520f58544a9605fe9adbae7996138a3770337ede (diff) | |
download | libxml2-4aede2e66b88ad782b506341c6ea40554456a8b4.tar.gz |
remove the warning for startDocument(), as it is used by glade (or
* legacy.c: remove the warning for startDocument(), as it is used by
glade (or glade-python)
* parser.c relaxng.c xmlschemastypes.c: fixed an assorted set of
invalid accesses found by running some Python based regression
tests under valgrind. There is still a few leaks reported by the
relaxng regressions which need some attention.
* doc/Makefile.am: fixed a make install problem c.f. #124539
* include/libxml/parserInternals.h: addition of xmlParserMaxDepth
patch from crutcher
Daniel
Diffstat (limited to 'relaxng.c')
-rw-r--r-- | relaxng.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6696,11 +6696,11 @@ xmlRelaxNGNormExtSpace(xmlChar * value) /* don't try to normalize the inner spaces */ while (IS_BLANK(*cur)) cur++; - *start++ = *cur++; if (*cur == 0) { *start = 0; return; } + *start++ = *cur++; } while (1); } } |