Advertisement
PVS-StudioWarnings

PVS-Studio warning V519 for WinMerge

Nov 27th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1. int TimeSizeCompare::CompareFiles(int compMethod,
  2.                                   const DIFFITEM &di)
  3. {
  4.   UINT code = DIFFCODE::SAME;
  5.   ...
  6.   if (di.left.size != di.right.size)
  7.   {
  8.     code &= ~DIFFCODE::SAME;
  9.     code = DIFFCODE::DIFF;
  10.   }
  11.   ...
  12. }
  13.  
  14. This suspicious code was found in WinMerge project by PVS-Studio static code analyzer.
  15. Warning message is:
  16. V519 The 'code' variable is assigned values twice successively. Perhaps this is a mistake. Check lines: 79, 80. Merge timesizecompare.cpp 80
  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