mirror of
https://github.com/opnsense/src.git
synced 2026-07-15 04:01:09 -04:00
If conversion from UTF8 fails, don't mark Unicode text as available.
Submitted by: Michihiro NAKAJIMA MFC after: 30 days
This commit is contained in:
parent
bb3f721b2b
commit
929b60ba42
1 changed files with 2 additions and 1 deletions
|
|
@ -239,7 +239,8 @@ aes_get_wcs(struct aes *aes)
|
|||
if (aes->aes_set & AES_SET_UTF8) {
|
||||
/* Try converting UTF8 to WCS. */
|
||||
aes->aes_wcs = __archive_string_utf8_w(&(aes->aes_utf8));
|
||||
aes->aes_set |= AES_SET_WCS;
|
||||
if (aes->aes_wcs != NULL)
|
||||
aes->aes_set |= AES_SET_WCS;
|
||||
return (aes->aes_wcs);
|
||||
}
|
||||
return (NULL);
|
||||
|
|
|
|||
Loading…
Reference in a new issue