diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-11 17:14:53 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-11 17:33:53 +0100 |
commit | 9aad656156fbf76288e8a281760e60f1eccc6622 (patch) | |
tree | ea8bcbc4bb534b4e7bf8470be4e35db373753cfc /embeddedobj | |
parent | 9863f7db9196a9d04790887a4c1be09240cd3d72 (diff) |
coverity#703952 Unchecked return value
originally return was checked in
commit c37f4bb94a119e4031796c097a35c1217e221e6c
Date: Tue Nov 4 13:30:21 2003 +0000
#112739# add breakLink method
then use of bElExists was removed in
commit aec29756d7e058b47dc8dcef79bc93c3e9c61928
Date: Fri Nov 14 14:24:28 2003 +0000
#112923# ole implementation related changes
at which point this line should have been removed, but it wasn't
later at
commit 00b1faf239dbf676178dcaa0d15a1678d1148a0d
Author: Jens-Heiner Rechtien <hr@openoffice.org>
INTEGRATION: CWS warnings01 (1.19.10); FILE MERGED
2005/11/03 10:31:40 cd 1.19.10.1: #i55991# Warning free code for gcc
this still wasn't removed, just bElExists commented out
Change-Id: I1af2635558cd4f47da06e148e45489f522e0183f
Diffstat (limited to 'embeddedobj')
-rw-r--r-- | embeddedobj/source/commonembedding/persistence.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/embeddedobj/source/commonembedding/persistence.cxx b/embeddedobj/source/commonembedding/persistence.cxx index 260cce01c40a..2da05bc68a93 100644 --- a/embeddedobj/source/commonembedding/persistence.cxx +++ b/embeddedobj/source/commonembedding/persistence.cxx @@ -1852,9 +1852,6 @@ void SAL_CALL OCommonEmbeddedObject::breakLink( const uno::Reference< embed::XSt if ( !xNameAccess.is() ) throw uno::RuntimeException(); //TODO - // detect entry existence - /*sal_Bool bElExists =*/ xNameAccess->hasByName( sEntName ); - m_bReadOnly = false; if ( m_xParentStorage != xStorage || !m_aEntryName.equals( sEntName ) ) |