summaryrefslogtreecommitdiff
path: root/testC14N.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-09-24 14:13:13 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-09-24 14:13:13 +0000
commit118aed78f360f51d182770e62b251ef324707aa2 (patch)
tree7663107b890922ac71f466bc749f1f9dd45104c0 /testC14N.c
parent7233615a61a3636d8354e4e62b5c041f5fe0cbaf (diff)
downloadlibxml2-118aed78f360f51d182770e62b251ef324707aa2.tar.gz
fixed the data callback on transition functionality which was broken when
* xmlregexp.c: fixed the data callback on transition functionality which was broken when using the compact form * result/schemas/*: updated the results, less verbose, all tests pass like before * DOCBparser.c testAutomata.c testC14N.c testSchemas.c testThreads.c testXPath.c valid.c xinclude.c xmllint.c xmlregexp.c xmlschemas.c xmlschemastypes.c xpath.c python/libxml.c: removed a bunch of annoying warnings * xpath.c: try to provide better error report when possible Daniel
Diffstat (limited to 'testC14N.c')
-rw-r--r--testC14N.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testC14N.c b/testC14N.c
index 14236fa5..099707db 100644
--- a/testC14N.c
+++ b/testC14N.c
@@ -189,7 +189,7 @@ xmlChar **parse_list(xmlChar *str) {
return(NULL);
}
- len = strlen(str);
+ len = xmlStrlen(str);
if((str[0] == '\'') && (str[len - 1] == '\'')) {
str[len - 1] = '\0';
str++;