diff options
Diffstat (limited to 'desktop/unx/source/start.c')
-rw-r--r-- | desktop/unx/source/start.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/desktop/unx/source/start.c b/desktop/unx/source/start.c index f95cfe4d1eaa..76f3adcb6e9c 100644 --- a/desktop/unx/source/start.c +++ b/desktop/unx/source/start.c @@ -700,7 +700,9 @@ static void exec_javaldx(Args *args) *chomp = '\0'; } - extend_library_path(newpath); + if (newpath[0] != '\0') { + extend_library_path(newpath); + } if (javaldx) osl_freeProcessHandle(javaldx); |