diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-28 12:09:10 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-28 15:06:33 +0000 |
commit | 5d78c65851d8da14b6370a40393b3fb8367d7e1a (patch) | |
tree | 6bdb056c8186b7bb301d385265f8b2fa88007a81 /ucb/source | |
parent | d1f00da63c3b63bf02b7cf2380b2809a3010ec12 (diff) |
coverity#704085 Unchecked return value
other patterns aren't really the same as this one
Change-Id: Ie26fd5c01d156004f755017a859679e904a29520
Diffstat (limited to 'ucb/source')
-rw-r--r-- | ucb/source/ucp/ftp/ftpcontent.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/ftp/ftpcontent.cxx b/ucb/source/ucp/ftp/ftpcontent.cxx index d58ea9edf247..d903516d528a 100644 --- a/ucb/source/ucp/ftp/ftpcontent.cxx +++ b/ucb/source/ucp/ftp/ftpcontent.cxx @@ -941,7 +941,7 @@ Sequence<Any> FTPContent::setPropertyValues( if(evt.getLength()) { // title has changed notifyPropertiesChange(evt); - exchange(new FTPContentIdentifier(m_aFTPURL.ident(false,false))); + (void)exchange(new FTPContentIdentifier(m_aFTPURL.ident(false,false))); } return ret; |