summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-12-10 10:19:12 +0000
committerMichael Stahl <mstahl@redhat.com>2015-12-10 15:13:49 +0000
commit4f509d55f235ab4ce305b2789599ed96944e5147 (patch)
tree90ce7d64c8643a4e110ef4f0cff3822bcfddee0a /lotuswordpro/source/filter
parentc84a4af12fc83b911bf29958e83e8e2154890bfb (diff)
protect against missing Ruby Marker
Change-Id: I04809443b5dc50904654936e608360b57c2e85c3 (cherry picked from commit 215516a52fd01170bb4a79828b0f0948884b727a) (cherry picked from commit 6c296afad6b04328a596a92326aa50b1b480aba0) Reviewed-on: https://gerrit.libreoffice.org/20585 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'lotuswordpro/source/filter')
-rw-r--r--lotuswordpro/source/filter/lwpframelayout.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/lwpframelayout.cxx b/lotuswordpro/source/filter/lwpframelayout.cxx
index 6a2f9beb11b3..45cd52861f3f 100644
--- a/lotuswordpro/source/filter/lwpframelayout.cxx
+++ b/lotuswordpro/source/filter/lwpframelayout.cxx
@@ -1242,6 +1242,8 @@ void LwpRubyLayout::ConvertContentText()
void LwpRubyLayout::RegisterStyle()
{
LwpRubyMarker* pMarker = GetMarker();
+ if (!pMarker)
+ throw std::runtime_error("missing Ruby Marker");
XFRubyStyle* pRubyStyle = new XFRubyStyle;