testchar: Fix return value in testUserEncoding

This commit is contained in:
Nick Wellnhofer 2023-04-21 02:56:10 +02:00
parent db32b09d50
commit b51b99ef83

View File

@ -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);