mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
Fix bug 50268
This commit is contained in:
@ -1819,6 +1819,10 @@ std::wstring ToLowerRoman(int number)
|
||||
void readLi(NSStringUtils::CStringBuilder& oXml, XmlUtils::CXmlLiteReader& oIndexHtml, std::vector<std::wstring>& arrBinary, bool bUl, bool bWasTable)
|
||||
{
|
||||
int nNum = 1;
|
||||
while (oIndexHtml.MoveToNextAttribute())
|
||||
if (oIndexHtml.GetName() == L"start")
|
||||
nNum = std::stoi(oIndexHtml.GetText());
|
||||
oIndexHtml.MoveToElement();
|
||||
int nDeath = oIndexHtml.GetDepth();
|
||||
if (oIndexHtml.IsEmptyNode() || !oIndexHtml.ReadNextSiblingNode2(nDeath))
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user