Advertisement
PVS-StudioWarnings

PVS-Studio warning V547 for Miranda IM

Nov 24th, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.63 KB | None | 0 0
  1. extern DWORD nMessagesCount;
  2.  
  3. static void MirabilisImport(HWND hdlgProgressWnd)
  4. {
  5.   ...
  6.   nGroupsCount = ImportGroups();
  7.   if (nGroupsCount < 0) {
  8.     AddMessage( LPGEN("Group import was not completed."));
  9.     nGroupsCount = 0;
  10.   }
  11.   ...
  12. }
  13.  
  14. This suspicious code was found in Miranda IM project by PVS-Studio static code analyzer.
  15. Warning message is:
  16. V547 Expression 'nGroupsCount < 0' is always false. Unsigned type value is never < 0.  import  mirabilis.c  1416
  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