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:
parent
84758bc2ad
commit
2887a53143
1 changed files with 4 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue