mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-21 19:10:50 +00:00
- fixed: The WideString conversion function was missing a null check.
This commit is contained in:
parent
52b8c02fdf
commit
344c6a380b
1 changed files with 1 additions and 0 deletions
|
@ -1312,6 +1312,7 @@ FString &FString::operator=(const wchar_t *copyStr)
|
|||
|
||||
std::wstring WideString(const char *cin)
|
||||
{
|
||||
if (!cin) return L"";
|
||||
const uint8_t *in = (const uint8_t*)cin;
|
||||
// This is a bit tricky because we need to support both UTF-8 and legacy content in ISO-8859-1
|
||||
// and thanks to user-side string manipulation it can be that a text mixes both.
|
||||
|
|
Loading…
Reference in a new issue