xmllint: Add explicit cast for -fsanitize=integer

This commit is contained in:
Nick Wellnhofer 2024-05-05 18:16:11 +02:00
parent a4c2b7233f
commit a39e862b96

View File

@ -1249,7 +1249,7 @@ charactersDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *ch, int len)
if (noout)
return;
for (i = 0;(i<len) && (i < 30);i++)
out[i] = ch[i];
out[i] = (char) ch[i];
out[i] = 0;
fprintf(stdout, "SAX.characters(%s, %d)\n", out, len);