[libbluray-devel] JSM: allow reading aacs.* system properties
hpi1
git at videolan.org
Mon Mar 23 11:51:44 CET 2015
libbluray | branch: master | hpi1 <hpi1 at anonymous.org> | Mon Mar 23 12:42:21 2015 +0200| [7060ea2d1c9152366655d911a338531bb1a35ca5] | committer: hpi1
JSM: allow reading aacs.* system properties
> http://git.videolan.org/gitweb.cgi/libbluray.git/?a=commit;h=7060ea2d1c9152366655d911a338531bb1a35ca5
---
src/libbluray/bdj/java/org/videolan/BDJSecurityManager.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/libbluray/bdj/java/org/videolan/BDJSecurityManager.java b/src/libbluray/bdj/java/org/videolan/BDJSecurityManager.java
index abbd667..16e4f26 100644
--- a/src/libbluray/bdj/java/org/videolan/BDJSecurityManager.java
+++ b/src/libbluray/bdj/java/org/videolan/BDJSecurityManager.java
@@ -82,7 +82,7 @@ final class BDJSecurityManager extends SecurityManager {
// allow read
if (perm.getActions().equals("read")) {
String prop = perm.getName();
- if (prop.startsWith("bluray.") || prop.startsWith("dvb.") || prop.startsWith("mhp.")) {
+ if (prop.startsWith("bluray.") || prop.startsWith("dvb.") || prop.startsWith("mhp.") || prop.startsWith("aacs.")) {
//logger.info(perm + " granted");
return;
}
More information about the libbluray-devel
mailing list