Advertisement
PVS-StudioWarnings

PVS-Studio warning V512 for Chromium

Nov 21st, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.57 KB | None | 0 0
  1. void Time::Explode(bool is_local, Exploded* exploded) const
  2. {
  3.   ...
  4.   ZeroMemory(exploded, sizeof(exploded));
  5.   ...
  6. }
  7.  
  8. This is what should have been written here: sizeof(*exploded)
  9.  
  10. This suspicious code was found in Chromium project by PVS-Studio static code analyzer.
  11. Warning message is:
  12. V512 A call of the 'memset' function will lead to underflow of the buffer '(exploded)'.  base  time_win.cc  227
  13.  
  14. 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