summaryrefslogtreecommitdiff
path: root/xmlsecurity
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-07-18 16:40:59 +0100
committerCaolán McNamara <caolanm@redhat.com>2017-07-18 16:41:46 +0100
commitf3d9887d7a7092ad4d983109f08c41ed53ceb15f (patch)
tree5652cac34f37bda1c0adccfb4b09956ca4a476de /xmlsecurity
parentc7911bb582eee0b470904b740f5f092d689d97ee (diff)
coverity#1415512 silence Unchecked return value
Change-Id: I50601be72a5f496c1d1e8135af57db649e29110a
Diffstat (limited to 'xmlsecurity')
-rw-r--r--xmlsecurity/source/helper/xsecverify.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlsecurity/source/helper/xsecverify.cxx b/xmlsecurity/source/helper/xsecverify.cxx
index c9602ecfd2fe..e76e5afec92b 100644
--- a/xmlsecurity/source/helper/xsecverify.cxx
+++ b/xmlsecurity/source/helper/xsecverify.cxx
@@ -313,7 +313,7 @@ void XSecController::setDate( OUString& ouDate )
return;
}
InternalSignatureInformation &isi = m_vInternalSignatureInformations.back();
- utl::ISO8601parseDateTime( ouDate, isi.signatureInfor.stDateTime);
+ (void)utl::ISO8601parseDateTime( ouDate, isi.signatureInfor.stDateTime);
isi.signatureInfor.ouDateTime = ouDate;
}