Advertisement
PVS-StudioWarnings

PVS-Studio warning V595 for MAME

Nov 24th, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.59 KB | None | 0 0
  1. static void stv_vdp2_drawgfxzoom(...,
  2.   const gfx_element *gfx, ...)
  3. {
  4.   ...
  5.   if (gfx->pen_usage &&
  6.       transparency == STV_TRANSPARENCY_PEN)
  7.   {
  8.     ...
  9.   }
  10.  
  11.   if( gfx )
  12.   {
  13.     ...
  14.   }
  15.   ...
  16. }
  17.  
  18. This suspicious code was found in MAME project by PVS-Studio static code analyzer.
  19. Warning message is:
  20. V595 The 'gfx' pointer was utilized before it was verified against nullptr. Check lines: 2457, 2483.  stvvdp2.c 2457
  21.  
  22. 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