Advertisement
PVS-StudioWarnings

PVS-Studio warning V547 for ReactOS

Nov 25th, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.66 KB | None | 0 0
  1. typedef struct tagSCROLLINFO {
  2.   ....
  3.   UINT nPage;
  4.   ....
  5. } SCROLLINFO,*LPSCROLLINFO;
  6.  
  7. static DWORD FASTCALL
  8. co_IntSetScrollInfo(....)
  9. {
  10.   LPSCROLLINFO Info;
  11.   ....
  12.   /* Make sure the page size is valid */
  13.   if (Info->nPage < 0)
  14.   {
  15.     pSBData->page = Info->nPage = 0;
  16.   }
  17.   ....
  18. }
  19.  
  20. This suspicious code was found in ReactOS project by PVS-Studio static code analyzer.
  21. Warning message is:
  22. V547 Expression 'Info->nPage < 0' is always false. Unsigned type value is never < 0. scrollbar.c 428
  23.  
  24. 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