[Libreoffice-commits] core.git: Branch 'libreoffice-5-0-4' - lotuswordpro/source

Caolán McNamara caolanm at redhat.com
Thu Dec 10 07:13:10 PST 2015


 lotuswordpro/source/filter/lwpframelayout.cxx |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 5710f2530b6ad2c3bcf76bd90cc13c2e7bf3f456
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Thu Dec 10 10:24:19 2015 +0000

    guard against missing parent layout
    
    Change-Id: Ib08403edf805367c7392325fcfb66bc7ed4d6f6a
    (cherry picked from commit 713d737b1ff73e76c6543198ce9299e1c83ac147)
    (cherry picked from commit 5f469a2a1af8bff36fc3a5849a1500345febdba4)
    Reviewed-on: https://gerrit.libreoffice.org/20587
    Reviewed-by: David Tardon <dtardon at redhat.com>
    Tested-by: David Tardon <dtardon at redhat.com>
    Reviewed-by: Michael Stahl <mstahl at redhat.com>

diff --git a/lotuswordpro/source/filter/lwpframelayout.cxx b/lotuswordpro/source/filter/lwpframelayout.cxx
index 61325da..6a2f9be 100644
--- a/lotuswordpro/source/filter/lwpframelayout.cxx
+++ b/lotuswordpro/source/filter/lwpframelayout.cxx
@@ -189,8 +189,10 @@ void  LwpFrame::RegisterStyle(XFFrameStyle* pFrameStyle)
 */
  void LwpFrame::XFConvert(XFContentContainer* pCont)
  {
-     //parse the frame which anchor to page
+    // parse the frame which anchor to page
     LwpVirtualLayout* pParent = m_pLayout->GetParentLayout();
+    if (!pParent)
+        throw std::runtime_error("missing Parent Layout");
     if(pParent->IsPage()&& pParent->GetParentLayout()->IsPage())
     {
         //for mirror page, problems exist if the parent layout is header or footer layout,


More information about the Libreoffice-commits mailing list