diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-06-26 10:11:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-06-26 16:29:14 +0100 |
commit | a8b32cc97aac79729b6561e542ede298d4f96c5a (patch) | |
tree | 3c3e5b16953f9437d1c69009b91660698fc681aa /cppu/source | |
parent | 42bcbee2e6c71c766054bfd786d85302293b5b99 (diff) |
OSL_ENSURE->assert
Change-Id: Ib8ba49e89d03eaf3b3aae94dbbf121898ba9e8de
Diffstat (limited to 'cppu/source')
-rw-r--r-- | cppu/source/uno/lbenv.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppu/source/uno/lbenv.cxx b/cppu/source/uno/lbenv.cxx index f166914b46ad..f382c0dc80a0 100644 --- a/cppu/source/uno/lbenv.cxx +++ b/cppu/source/uno/lbenv.cxx @@ -512,7 +512,7 @@ static void SAL_CALL defenv_getRegisteredInterfaces( uno_ExtEnvironment * pEnv, void *** pppInterfaces, sal_Int32 * pnLen, uno_memAlloc memAlloc ) { - OSL_ENSURE( pEnv && pppInterfaces && pnLen && memAlloc, "### null ptr!" ); + assert(pEnv && pppInterfaces && pnLen && memAlloc && "### null ptr!"); uno_DefaultEnvironment * that = static_cast< uno_DefaultEnvironment * >( pEnv ); ::osl::MutexGuard guard( that->mutex ); |