summaryrefslogtreecommitdiff
path: root/qadevOOo/runner
diff options
context:
space:
mode:
authorjan iversen <jani@documentfoundation.org>2016-01-22 15:04:25 +0100
committerjan iversen <jani@documentfoundation.org>2016-01-23 08:31:46 +0000
commit77031644f16b63c794c1eef0ec4456d37e34fe23 (patch)
tree2854e011cef92b09a14a9c3eea7b23a5d94a709c /qadevOOo/runner
parentb996107585efb7bed88351d2cea2e56d8500c2fb (diff)
cid#1326434, 1326446, 1326248, 1326254
null pointer dereferencing, added null check Change-Id: I78f3ee1eb5d5bd4ebe7b3a6775db4884859dbcf6 Reviewed-on: https://gerrit.libreoffice.org/21712 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: jan iversen <jani@documentfoundation.org>
Diffstat (limited to 'qadevOOo/runner')
-rw-r--r--qadevOOo/runner/util/utils.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/qadevOOo/runner/util/utils.java b/qadevOOo/runner/util/utils.java
index c3f34589425b..8582f5f24010 100644
--- a/qadevOOo/runner/util/utils.java
+++ b/qadevOOo/runner/util/utils.java
@@ -587,7 +587,8 @@ public class utils {
} catch (com.sun.star.uno.Exception e) {
}
- xTrans.parseStrict(rUrl);
+ if (xTrans != null)
+ xTrans.parseStrict(rUrl);
return rUrl[0];
}