Advertisement
PVS-StudioWarnings

PVS-Studio warning V512 for ReactOS

Nov 20th, 2014
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.70 KB | None | 0 0
  1. typedef WCHAR TCHAR,*PTCHAR;
  2. TCHAR file_path[MAX_PATH];
  3.  
  4. #define MAX_PATH 260
  5.  
  6. LRESULT CALLBACK
  7. WndProc( HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam )
  8. {
  9.   ...
  10.   ZeroMemory( file_path, MAX_PATH );
  11.   ...
  12. }
  13.  
  14. This is what should have been written here: ZeroMemory( file_path, MAX_PATH * sizeof(TCHAR));
  15.  
  16.  
  17. This suspicious code was found in ReactOS project by PVS-Studio static code analyzer.
  18. Warning message is:
  19. V512 A call of the 'memset' function will lead to underflow of the buffer '((file_path))'. sndrec32 sndrec32.cpp 769
  20.  
  21. 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