Advertisement
PVS-StudioWarnings

PVS-Studio warning V547 for StrongDC++

Nov 27th, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.52 KB | None | 0 0
  1. uint64_t QueueManager::FileQueue::getTotalQueueSize(){
  2.   uint64_t totalsize = 0;
  3.   ...
  4.   if(totalsize < 0)
  5.     totalsize = 0;
  6.   ...
  7. }
  8.  
  9. This suspicious code was found in StrongDC++ project by PVS-Studio static code analyzer.
  10. Warning message is:
  11. V547 Expression 'totalsize < 0' is always false. Unsigned type value is never < 0. client queuemanager.cpp 2230
  12.  
  13. 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