Advertisement
PVS-StudioWarnings

PVS-Studio warning V595 for IPP Samples

Nov 26th, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.75 KB | None | 0 0
  1. VIDEO_DRV_CREATE_BUFFERS_FUNC(umc_vdrv_CreateBuffers,
  2.                               driver, min_b, max_b, bufs,
  3.                               video_mem_type, video_mem_info)
  4. {
  5.   ...
  6.   VideoDrvVideoMemInfo*   drv_vm  = &(driver->m_VideoMemInfo);
  7.   ...
  8.   if ((NULL == driver) || (NULL == bufs))
  9.   {
  10.     ERR_SET(VM_NULL_PTR, "null ptr");
  11.   }
  12.   ...
  13. }
  14.  
  15. This suspicious code was found in IPP Samples project by PVS-Studio static code analyzer.
  16. Warning message is:
  17. V595 The 'driver' pointer was utilized before it was verified against nullptr. Check lines: 40, 46. video_renders drv.c 40
  18.  
  19. 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