mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-23 16:41:37 +00:00
Merge branch 'fix_empty_utf8' into 'master'
Fix out of bounds access for std::string_view See merge request OpenMW/openmw!1658
This commit is contained in:
commit
b617d0aec4
1 changed files with 2 additions and 0 deletions
|
@ -30,6 +30,8 @@ namespace
|
|||
{
|
||||
unsigned long utf8ToUnicode(std::string_view utf8)
|
||||
{
|
||||
if (utf8.empty())
|
||||
return 0;
|
||||
size_t i = 0;
|
||||
unsigned long unicode;
|
||||
size_t numbytes;
|
||||
|
|
Loading…
Reference in a new issue