Closed GoogleCodeExporter closed 9 years ago
This issue was also recognized in the current developer version and is already
fixed.
ca will now checked before any method is accessed.
public synchronized void checkCommand(IChannel channel, byte[] command) {
ChannelAccess ca = channel.getChannelAccess();
if (ca == null) {
throw new AccessControlException(ACCESS_CONTROL_ENFORCER + "Channel access not set");
}
String reason = ca.getReason();
if (reason.length() == 0) {
reason = "Command not allowed!";
}
Original comment by schus...@gmail.com
on 18 Mar 2013 at 2:46
setting old issues from fixed to done
Original comment by Daniel.A...@gi-de.com
on 5 Jul 2013 at 2:33
Original issue reported on code.google.com by
mats.ake...@gmail.com
on 22 Feb 2013 at 9:29