mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
encoding: Fix error code in asciiToUTF8
Use correct error code when invalid ASCII bytes are encountered. Found by OSS-Fuzz.
This commit is contained in:
parent
3660229219
commit
a6b9e55a9e
@ -197,7 +197,7 @@ asciiToUTF8(unsigned char* out, int *outlen,
|
||||
} else {
|
||||
*outlen = out - outstart;
|
||||
*inlen = processed - base;
|
||||
return(-1);
|
||||
return(-2);
|
||||
}
|
||||
|
||||
processed = (const unsigned char*) in;
|
||||
|
Loading…
x
Reference in New Issue
Block a user