[libbluray-devel] Check for null
hpi1
git at videolan.org
Fri Dec 4 09:58:37 CET 2015
libbluray | branch: master | hpi1 <hpi1 at anonymous.org> | Thu Dec 3 13:37:31 2015 +0200| [c7ed7c0c4841410d86ac566fd82bb8621ba01e67] | committer: hpi1
Check for null
> http://git.videolan.org/gitweb.cgi/libbluray.git/?a=commit;h=c7ed7c0c4841410d86ac566fd82bb8621ba01e67
---
src/libbluray/bdj/java/org/videolan/BDJXletContext.java | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/src/libbluray/bdj/java/org/videolan/BDJXletContext.java b/src/libbluray/bdj/java/org/videolan/BDJXletContext.java
index 359cd28..8ee818a 100644
--- a/src/libbluray/bdj/java/org/videolan/BDJXletContext.java
+++ b/src/libbluray/bdj/java/org/videolan/BDJXletContext.java
@@ -70,7 +70,12 @@ public class BDJXletContext implements javax.tv.xlet.XletContext, javax.microedi
try {
int homeJarID = Integer.parseInt(home);
long time = System.currentTimeMillis();
- homeMountPoint = MountManager.mount(homeJarID, false) + java.io.File.separator;
+ homeMountPoint = MountManager.mount(homeJarID, false);
+ if (homeMountPoint == null) {
+ logger.error("Failed mounting " + home + ".jar");
+ } else {
+ homeMountPoint = homeMountPoint + java.io.File.separator;
+ }
time = System.currentTimeMillis() - time;
logger.info("Mounted Xlet home directory from " + home + ".jar " +
"to " + homeMountPoint + "(" + time + "ms)");
More information about the libbluray-devel
mailing list