[SHELLBTRFS] Fix build

CORE-15452
This commit is contained in:
Pierre Schweitzer 2018-12-16 12:19:32 +01:00
parent 215c0778da
commit 00ff5e8dc9
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B

View file

@ -836,7 +836,6 @@ NTSTATUS NTAPI RtlUnicodeToUTF8N(CHAR *utf8_dest, ULONG utf8_bytes_max,
}
/* encode ch as UTF-8 */
ASSERT(ch <= 0x10ffff);
if (ch < 0x80)
{
utf8_ch[0] = ch & 0x7f;