mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
fix bug #78953
This commit is contained in:
@ -80,10 +80,11 @@ const bool LD::loadContent(BinProcessor& proc)
|
||||
elements_.pop_back();
|
||||
}
|
||||
|
||||
proc.mandatory<ATTACHEDLABEL>();
|
||||
|
||||
if(proc.mandatory<ATTACHEDLABEL>())
|
||||
{
|
||||
m_ATTACHEDLABEL = elements_.back();
|
||||
elements_.pop_back();
|
||||
}
|
||||
|
||||
if (proc.optional<FRAME>())
|
||||
{
|
||||
@ -102,7 +103,8 @@ const bool LD::loadContent(BinProcessor& proc)
|
||||
elements_.pop_back();
|
||||
}
|
||||
proc.optional<CRTMLFRT>();
|
||||
proc.mandatory<End>(); elements_.pop_back();
|
||||
if(proc.mandatory<End>())
|
||||
elements_.pop_back();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user