Advertisement
PVS-StudioWarnings

PVS-Studio warning V547 for Firefox

Nov 27th, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.60 KB | None | 0 0
  1. bool
  2. Adts::ConvertEsdsToAdts(uint16_t aChannelCount, ....)
  3. {
  4.   ....
  5.   if (newSize >= (1 << 13) || aChannelCount < 0 ||
  6.       aChannelCount > 15 || aFrequencyIndex < 0 ||
  7.       aProfile < 1 || aProfile > 4)
  8.     return false;
  9.   ....
  10. }
  11.  
  12. This suspicious code was found in Firefox project by PVS-Studio static code analyzer.
  13. Warning message is:
  14. V547 Expression 'aChannelCount < 0' is always false. Unsigned type value is never < 0. adts.cpp 44
  15.  
  16. 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