Kaydet (Commit) 377a06bf authored tarafından Jens-Heiner Rechtien's avatar Jens-Heiner Rechtien

INTEGRATION: CWS vcl80 (1.3.30); FILE MERGED

2007/07/09 08:51:29 pl 1.3.30.1: #i79362# check for NULL pointer (thanks cmc)
üst 41fd1aa7
......@@ -4,9 +4,9 @@
*
* $RCSfile: OConnectionPointContainerHelper.cxx,v $
*
* $Revision: 1.3 $
* $Revision: 1.4 $
*
* last change: $Author: rt $ $Date: 2005-09-09 09:17:17 $
* last change: $Author: hr $ $Date: 2007-07-31 16:11:00 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
......@@ -151,7 +151,7 @@ Reference< XConnectionPoint > SAL_CALL OConnectionPointContainerHelper::queryCon
// Get all elements of the container, which have the searched type.
OInterfaceContainerHelper* pSpecialContainer = m_aMultiTypeContainer.getContainer( aType );
if ( pSpecialContainer->getLength() > 0 )
if ( pSpecialContainer && pSpecialContainer->getLength() > 0 )
{
// Ready for multithreading
MutexGuard aGuard( m_aSharedMutex );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment