Fixed null pointer exception in Writer4LaTeX

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@88 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2011-02-14 08:45:06 +00:00
parent 84758bc2ad
commit 2887a53143

View file

@ -138,7 +138,7 @@ public final class TeXify {
for (int i=0; i<sAppList.length; i++) {
// Execute external application
Map<String,String> env =null;
if (ExternalApps.BIBTEX.equals(sAppList[i])) {
if (ExternalApps.BIBTEX.equals(sAppList[i]) && sBibinputs!=null) {
env = new HashMap<String,String>();
env.put("BIBINPUTS", sBibinputs);
}
@ -149,6 +149,7 @@ public final class TeXify {
//throw new IOException("Error executing "+sAppList[i]);
}
}
return true;
}