diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:25:34 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:25:34 +0000 |
commit | ef16933affc6fb97f1bff5d7ae0400bc67eed93a (patch) | |
tree | 3bc07008aa4db28ed2d9394588abb0a089e03fec /stoc | |
parent | 6d7f07012af23b1e4c5bd7374eb67c365d693c81 (diff) |
INTEGRATION: CWS pj65 (1.9.8); FILE MERGED
2006/10/24 06:49:59 pjanik 1.9.8.1: #i70659#: Prevent warnings on Mac OS X.
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/source/security/access_controller.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stoc/source/security/access_controller.cxx b/stoc/source/security/access_controller.cxx index 76e430049d23..b8213b996987 100644 --- a/stoc/source/security/access_controller.cxx +++ b/stoc/source/security/access_controller.cxx @@ -4,9 +4,9 @@ * * $RCSfile: access_controller.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: obo $ $Date: 2006-09-16 17:35:50 $ + * last change: $Author: vg $ $Date: 2006-11-21 17:25:34 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -530,7 +530,7 @@ AccessController::AccessController( Reference< XComponentContext > const & xComp // switch on caching for DYNAMIC_ONLY and ON (sharable multi-user process) if (ON == m_mode || DYNAMIC_ONLY == m_mode) { - sal_Int32 cacheSize; // multi-user cache size + sal_Int32 cacheSize = 0; // multi-user cache size if (! (m_xComponentContext->getValueByName( OUSTR("/services/" SERVICE_NAME "/user-cache-size") ) >>= cacheSize)) { |