https://git.reactos.org/?p=reactos.git;a=commitdiff;h=00ff5e8dc9e459d1b49e50...
commit 00ff5e8dc9e459d1b49e50603919998963f5992b Author: Pierre Schweitzer pierre@reactos.org AuthorDate: Sun Dec 16 12:19:32 2018 +0100 Commit: Pierre Schweitzer pierre@reactos.org CommitDate: Sun Dec 16 12:19:32 2018 +0100
[SHELLBTRFS] Fix build
CORE-15452 --- dll/shellext/shellbtrfs/main.cpp | 1 - 1 file changed, 1 deletion(-)
diff --git a/dll/shellext/shellbtrfs/main.cpp b/dll/shellext/shellbtrfs/main.cpp index 92f4c5b710..ba9c419ff8 100644 --- a/dll/shellext/shellbtrfs/main.cpp +++ b/dll/shellext/shellbtrfs/main.cpp @@ -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;