Advertisement
PVS-StudioWarnings

PVS-Studio warning V547 for WebPagetest

Nov 24th, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.71 KB | None | 0 0
  1. bool
  2. Reader::readArray( Token &tokenStart )
  3. {
  4.   ....
  5.   bool badTokenType = ( token.type_ == tokenArraySeparator &&
  6.                         token.type_ == tokenArrayEnd );
  7.   if ( !ok  ||  badTokenType )
  8.   {
  9.     ....
  10. }
  11.  
  12. This is what should have been written here: token.type_ != tokenArraySeparator && token.type_ != tokenArrayEnd
  13.  
  14. This suspicious code was found in WebPagetest project by PVS-Studio static code analyzer.
  15. Warning message is:
  16. V547 Expression is always false. Probably the '||' operator should be used here. json_reader.cpp 566
  17.  
  18. 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