Advertisement
PVS-StudioWarnings

PVS-Studio warning V610 for Chromium

Nov 25th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.54 KB | None | 0 0
  1. bool WebMClusterParser::ParseBlock(....)
  2. {
  3.   int timecode = buf[1] << 8 | buf[2];
  4.   ....
  5.   if (timecode & 0x8000)
  6.     timecode |= (-1 << 16);
  7.   ....
  8. }
  9.  
  10. This suspicious code was found in Chromium project by PVS-Studio static code analyzer.
  11. Warning message is:
  12. V610 Undefined behavior. Check the shift operator '<<. The left operand '-1' is negative. webm_cluster_parser.cc 217
  13.  
  14. 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