diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-10-14 09:52:20 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-10-14 10:59:43 +0100 |
commit | bbc91b7a0c309c5022a8f34fd7e5310dbc0411a0 (patch) | |
tree | d2c7f6018f93f7f1bdcd5b58ea46d0e2ce89684e /store | |
parent | 750542c704afdad0f36f5bba22dd946bc902292b (diff) |
coverity#1326107 Unchecked return value
Change-Id: I6f2dc9c12349a5175ed34e22fa29d875d6b9bd0a
Diffstat (limited to 'store')
-rw-r--r-- | store/source/storpage.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/store/source/storpage.cxx b/store/source/storpage.cxx index f49a894e3a9b..a50182681174 100644 --- a/store/source/storpage.cxx +++ b/store/source/storpage.cxx @@ -778,7 +778,7 @@ storeError OStorePageManager::remove (const OStorePageKey &rKey) base::releasePage (aDescr); // Release and free directory page. - base::free (aPage.location()); + (void)base::free (aPage.location()); } // Remove entry. |