Kaydet (Commit) 5d78c658 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#704085 Unchecked return value

other patterns aren't really the same as this one

Change-Id: Ie26fd5c01d156004f755017a859679e904a29520
üst d1f00da6
...@@ -941,7 +941,7 @@ Sequence<Any> FTPContent::setPropertyValues( ...@@ -941,7 +941,7 @@ Sequence<Any> FTPContent::setPropertyValues(
if(evt.getLength()) { if(evt.getLength()) {
// title has changed // title has changed
notifyPropertiesChange(evt); notifyPropertiesChange(evt);
exchange(new FTPContentIdentifier(m_aFTPURL.ident(false,false))); (void)exchange(new FTPContentIdentifier(m_aFTPURL.ident(false,false)));
} }
return ret; return ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment