summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-12-11 09:17:43 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-12-11 11:02:07 +0000
commit2ff53f66dc2fbb44b253065e564b6a44aa0b7833 (patch)
tree72317a0daf4138e78fd4305df7d60762fcfc33a2 /desktop
parentd08a7036dcdd75aba1b8ae67a0af745deb813ff2 (diff)
coverity#703948 Unchecked return value
Change-Id: Id72cb51ae61d663ab58585ba4b83086080462bab
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/deployment/registry/component/dp_component.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/deployment/registry/component/dp_component.cxx b/desktop/source/deployment/registry/component/dp_component.cxx
index 7976be5f0022..5c1375541876 100644
--- a/desktop/source/deployment/registry/component/dp_component.cxx
+++ b/desktop/source/deployment/registry/component/dp_component.cxx
@@ -439,7 +439,7 @@ void BackendImpl::initServiceRdbFiles()
// switch common rdb:
if (!m_commonRDB_orig.isEmpty())
{
- create_ucb_content(
+ (void)create_ucb_content(
&oldRDB, makeURL( getCachePath(), m_commonRDB_orig),
xCmdEnv, false /* no throw */ );
}