mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
testchar: Don't invoke encoding handler directly
This commit is contained in:
parent
446a3610fd
commit
10082a3d54
23
testchar.c
23
testchar.c
@ -751,21 +751,20 @@ error:
|
|||||||
static char *
|
static char *
|
||||||
convert(xmlCharEncodingHandlerPtr handler, const char *utf8, int size,
|
convert(xmlCharEncodingHandlerPtr handler, const char *utf8, int size,
|
||||||
int *outSize) {
|
int *outSize) {
|
||||||
|
xmlBufferPtr in, out;
|
||||||
char *ret;
|
char *ret;
|
||||||
int inlen;
|
|
||||||
int res;
|
|
||||||
|
|
||||||
inlen = size;
|
in = xmlBufferCreate();
|
||||||
*outSize = size * 2;
|
xmlBufferAdd(in, BAD_CAST utf8, size);
|
||||||
ret = xmlMalloc(*outSize);
|
out = xmlBufferCreate();
|
||||||
if (ret == NULL)
|
xmlCharEncOutFunc(handler, out, in);
|
||||||
return(NULL);
|
|
||||||
res = handler->output(BAD_CAST ret, outSize, BAD_CAST utf8, &inlen);
|
|
||||||
if ((res < 0) || (inlen != size)) {
|
|
||||||
xmlFree(ret);
|
|
||||||
return(NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
if (outSize)
|
||||||
|
*outSize = out->use;
|
||||||
|
ret = (char *) xmlBufferDetach(out);
|
||||||
|
|
||||||
|
xmlBufferFree(out);
|
||||||
|
xmlBufferFree(in);
|
||||||
return(ret);
|
return(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user