Advertisement
PVS-StudioWarnings

PVS-Studio warning V557 for CPU Identifying Tool

Nov 25th, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.63 KB | None | 0 0
  1. #define FINDBUFFLEN 64  // Max buffer find/replace size
  2.  
  3. int WINAPI Sticky (HWND hwnd, UINT message,
  4.   WPARAM wParam, LPARAM lParam)
  5. {
  6.   ...
  7.   static char  findWhat[FINDBUFFLEN] = {'\0'};
  8.   ...
  9.   findWhat[FINDBUFFLEN] = '\0';
  10.   ...
  11. }
  12.  
  13. This suspicious code was found in CPU Identifying Tool project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V557 Array overrun is possible. The '64' index is pointing beyond array bound. stickies stickies.cpp 7947
  16.  
  17. 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