Skip to content

Commit

Permalink
update code;testing
Browse files Browse the repository at this point in the history
  • Loading branch information
JinhangZhang committed Jan 7, 2025
1 parent f1b4d80 commit d51c66b
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -376,9 +376,11 @@ public AccessControlContext(ProtectionDomain[] fromContext) {
}
}
} else {
this.domainCombiner = parentAcc.domainCombiner;
if (parentAcc != null) {
this.domainCombiner = parentAcc.domainCombiner;
this.nextStackAcc = parentAcc;
}
this.context = pdArray;
this.nextStackAcc = parentAcc;
}
break;
case STATE_NOT_AUTHORIZED:
Expand Down

0 comments on commit d51c66b

Please sign in to comment.