diff --git a/src/utility/zstring.cpp b/src/utility/zstring.cpp index f3bdbd567..6bcf36c7f 100644 --- a/src/utility/zstring.cpp +++ b/src/utility/zstring.cpp @@ -1314,6 +1314,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.