Kaydet (Commit) fee37966 authored tarafından Miklos Vajna's avatar Miklos Vajna

oox: avoid crash in ContextHandler2Helper::processCollectedChars()

Change-Id: Ie70c9914745364c7f2beb3cb84a610ec919a950c
üst c7069898
......@@ -166,6 +166,8 @@ void ContextHandler2Helper::popElementInfo()
void ContextHandler2Helper::processCollectedChars()
{
OSL_ENSURE( !mxContextStack->empty(), "ContextHandler2Helper::processCollectedChars - no context info" );
if (mxContextStack->empty())
return;
ElementInfo& rInfo = mxContextStack->back();
if( !rInfo.maChars.isEmpty() )
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment