Advertisement
PVS-StudioWarnings

PVS-Studio warning V512 for MAME

Nov 24th, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.49 KB | None | 0 0
  1. UINT32 m_pstars_regs[16];
  2.  
  3. static DRIVER_INIT( pstar )
  4. {
  5.   ...
  6.   memset(state->m_pstars_regs, 0, 16);
  7.   ...
  8. }
  9.  
  10. This suspicious code was found in MAME 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 'state->m_pstars_regs'.  pgm.c 4458
  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