Advertisement
PVS-StudioWarnings

PVS-Studio warning V576 for ReactOS

Nov 27th, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.66 KB | None | 0 0
  1. UINT64 Size;
  2.  
  3. static HRESULT STDMETHODCALLTYPE
  4. CBindStatusCallback_OnProgress(....)
  5. {
  6.   ....
  7.   _tprintf(_T("Length: %ull\n"), This->Size);
  8.   ....
  9. }
  10.  
  11. This is what should be written: _tprintf(_T("Length: %llu\n"), This->Size);
  12.  
  13. This suspicious code was found in ReactOS project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V576 Incorrect format. Consider checking the second actual argument of the 'wprintf' function. The argument is expected to be not greater than 32-bit. dwnl.c 228
  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