[libbluray-devel] IxcRegistry: both contexts are required
hpi1
git at videolan.org
Fri Oct 9 11:34:46 CEST 2015
libbluray | branch: master | hpi1 <hpi1 at anonymous.org> | Thu Oct 8 14:46:37 2015 +0300| [ce3a16222d1e4d6a9bdfbba9fff0d158e057b2d1] | committer: hpi1
IxcRegistry: both contexts are required
> http://git.videolan.org/gitweb.cgi/libbluray.git/?a=commit;h=ce3a16222d1e4d6a9bdfbba9fff0d158e057b2d1
---
src/libbluray/bdj/java/org/videolan/IxcRegistryImpl.java | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/libbluray/bdj/java/org/videolan/IxcRegistryImpl.java b/src/libbluray/bdj/java/org/videolan/IxcRegistryImpl.java
index 226d359..85e08dc 100644
--- a/src/libbluray/bdj/java/org/videolan/IxcRegistryImpl.java
+++ b/src/libbluray/bdj/java/org/videolan/IxcRegistryImpl.java
@@ -276,9 +276,11 @@ public class IxcRegistryImpl {
callerContext = BDJXletContext.getCurrentContext();
if (callerContext == null) {
logger.error("caller context is null");
+ throw new RemoteException("no caller context");
}
if (context == null) {
logger.error("callee context is null");
+ throw new RemoteException("no callee context");
}
calleeContext = context;
More information about the libbluray-devel
mailing list