summaryrefslogtreecommitdiff
path: root/stoc/source/security/access_controller.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2011-12-27 00:12:38 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2011-12-27 10:17:15 +0900
commitc936e5062770ba100c2eddd7889b51d271c6c73c (patch)
tree7ab2701dce9bfea7ac5b3b319a05a1aeb4a25cad /stoc/source/security/access_controller.cxx
parent1d55be916472270d23f7d3ff7513dd6df6dc1e46 (diff)
catch exception by constant reference
Diffstat (limited to 'stoc/source/security/access_controller.cxx')
-rw-r--r--stoc/source/security/access_controller.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/stoc/source/security/access_controller.cxx b/stoc/source/security/access_controller.cxx
index c51d1399723c..caa4ae97fbf6 100644
--- a/stoc/source/security/access_controller.cxx
+++ b/stoc/source/security/access_controller.cxx
@@ -845,7 +845,7 @@ PermissionCollection AccessController::getEffectivePermissions(
checkAndClearPostPoned();
return ret;
}
- catch (security::AccessControlException & exc) // wrapped into DeploymentException
+ catch (const security::AccessControlException & exc) // wrapped into DeploymentException
{
clearPostPoned(); // safety: exception could have happened before checking postponed?
OUStringBuffer buf( 64 );