mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-01 16:15:36 +00:00
Fix out-of-bounds access in JournalBooks::createCyrillicJournalIndex
This commit is contained in:
parent
5d83de189a
commit
13f060623f
1 changed files with 1 additions and 1 deletions
|
@ -278,7 +278,7 @@ BookTypesetter::Ptr JournalBooks::createCyrillicJournalIndex ()
|
||||||
mIndexPagesCount = 2;
|
mIndexPagesCount = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned char ch[2] = {0xd0, 0x90}; // CYRILLIC CAPITAL A is a 0xd090 in UTF-8
|
unsigned char ch[3] = {0xd0, 0x90, 0x00}; // CYRILLIC CAPITAL A is a 0xd090 in UTF-8
|
||||||
|
|
||||||
for (int i = 0; i < 32; ++i)
|
for (int i = 0; i < 32; ++i)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue