From 2887a53143b80266d958a5561d8078b4ab608878 Mon Sep 17 00:00:00 2001 From: henrikjust Date: Mon, 14 Feb 2011 08:45:06 +0000 Subject: [PATCH] Fixed null pointer exception in Writer4LaTeX git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@88 f0f2a975-2e09-46c8-9428-3b39399b9f3c --- .../java/org/openoffice/da/comp/writer4latex/TeXify.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/source/java/org/openoffice/da/comp/writer4latex/TeXify.java b/source/java/org/openoffice/da/comp/writer4latex/TeXify.java index e88462c..ea117dc 100644 --- a/source/java/org/openoffice/da/comp/writer4latex/TeXify.java +++ b/source/java/org/openoffice/da/comp/writer4latex/TeXify.java @@ -37,7 +37,7 @@ import com.sun.star.uno.XComponentContext; * the result. */ public final class TeXify { - + /** Backend format generic (dvi) */ public static final short GENERIC = 1; @@ -138,7 +138,7 @@ public final class TeXify { for (int i=0; i env =null; - if (ExternalApps.BIBTEX.equals(sAppList[i])) { + if (ExternalApps.BIBTEX.equals(sAppList[i]) && sBibinputs!=null) { env = new HashMap(); env.put("BIBINPUTS", sBibinputs); } @@ -147,8 +147,9 @@ public final class TeXify { if (i==0 && nReturnCode>0) { return false; //throw new IOException("Error executing "+sAppList[i]); - } + } } + return true; }