Kaydet (Commit) b26aaf5f authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708562 Uninitialized scalar field

Change-Id: I93a760e0f3b8a1669f7ce9995808b7cff52fa1fa
üst 88076235
...@@ -84,26 +84,20 @@ extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL ucpfile_component_getFactory( ...@@ -84,26 +84,20 @@ extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL ucpfile_component_getFactory(
/* */ /* */
/* */ /* */
/****************************************************************************/ /****************************************************************************/
FileProvider::FileProvider( const Reference< XComponentContext >& rxContext ) FileProvider::FileProvider( const Reference< XComponentContext >& rxContext )
: m_xContext( rxContext ), : m_xContext(rxContext)
m_pMyShell( 0 ) , m_FileSystemNotation(FileSystemNotation::UNKNOWN_NOTATION)
, m_pMyShell(NULL)
{ {
} }
FileProvider::~FileProvider() FileProvider::~FileProvider()
{ {
if( m_pMyShell ) if( m_pMyShell )
delete m_pMyShell; delete m_pMyShell;
} }
// XInitialization // XInitialization
void SAL_CALL FileProvider::init() void SAL_CALL FileProvider::init()
{ {
if( ! m_pMyShell ) if( ! m_pMyShell )
......
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