mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
testchar: Fix return value in testUserEncoding
This commit is contained in:
parent
db32b09d50
commit
b51b99ef83
@ -672,7 +672,7 @@ testUserEncoding(void) {
|
||||
int totalSize = startSize + textSize + endSize;
|
||||
int k = 0;
|
||||
int i;
|
||||
int ret = 0;
|
||||
int ret = 1;
|
||||
|
||||
buf = xmlMalloc(2 * totalSize);
|
||||
for (i = 0; start[i] != 0; i++) {
|
||||
@ -693,16 +693,17 @@ testUserEncoding(void) {
|
||||
fprintf(stderr, "failed to parse document\n");
|
||||
goto error;
|
||||
}
|
||||
text = doc->children->children->content;
|
||||
|
||||
text = doc->children->children->content;
|
||||
for (i = 0; i < textSize; i++) {
|
||||
if (text[i] != 'x') {
|
||||
fprintf(stderr, "text node has wrong content at offset %d\n", k);
|
||||
ret = 1;
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
|
||||
ret = 0;
|
||||
|
||||
error:
|
||||
xmlFreeDoc(doc);
|
||||
xmlFree(buf);
|
||||
|
Loading…
x
Reference in New Issue
Block a user