Advertisement
PVS-StudioWarnings

PVS-Studio warning V593 for Firefox

Nov 27th, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.65 KB | None | 0 0
  1. bool
  2. DataChannelConnection::SendDeferredMessages()
  3. {
  4.   ....
  5.   if ((result = usrsctp_sendv(mSocket, data, ...., 0) < 0)) {
  6.   ....
  7. }
  8.  
  9. Most likely this is what should be written here: if ((result = usrsctp_sendv(mSocket, data, ...., 0)) < 0) {
  10.  
  11. This suspicious code was found in Firefox project by PVS-Studio static code analyzer.
  12. Warning message is:
  13. V593 Consider reviewing the expression of the 'A = B < C' kind. The expression is calculated as following: 'A = (B < C)'. datachannel.cpp 1105
  14.  
  15. PVS-Studio is a static analyzer for detecting bugs in the source code of applications written in C, C++, C++11, C++/CX. Site: http://www.viva64.com/en/pvs-studio/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement