From df172d504d08d8c7a47dc21716f68a4388df8c59 Mon Sep 17 00:00:00 2001 From: Georgy Litvinov Date: Fri, 14 Feb 2020 19:57:30 +0100 Subject: [PATCH] Fixed NPE --- src/main/java/writer2latex/xhtml/style/TextStyleParser.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/writer2latex/xhtml/style/TextStyleParser.java b/src/main/java/writer2latex/xhtml/style/TextStyleParser.java index e316f6e..399a30e 100644 --- a/src/main/java/writer2latex/xhtml/style/TextStyleParser.java +++ b/src/main/java/writer2latex/xhtml/style/TextStyleParser.java @@ -297,6 +297,9 @@ public class TextStyleParser extends StyleWithPropertiesParser { // public void cssText(StyleWithProperties style, Properties props, boolean bInherit) { + if (style == null) { + return; + } cssTextCommon(style,props,bInherit); cssTextBackground(style,props,bInherit); } @@ -304,6 +307,9 @@ public class TextStyleParser extends StyleWithPropertiesParser { public void cssTextCommon(StyleWithProperties style, Properties props, boolean bInherit) { String fontName=null,s2=null,s3=null,s4=null; CSVList val; + if (style == null) { + return; + } // Font family if (bConvertFont && (bInherit || style.getProperty(XMLString.STYLE_FONT_NAME,false)!=null)) {