Advertisement
PVS-StudioWarnings

PVS-Studio warning V595 for OpenCV

Nov 21st, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.62 KB | None | 0 0
  1. void CvBlobTrackerAuto1::Process(IplImage* pImg, IplImage* pMask)
  2. {
  3.   ....
  4.   CvBlob* pBN = NewBlobList.GetBlob(i);
  5.   pBN->ID = m_NextBlobID;
  6.  
  7.   if(pBN &&
  8.      pBN->w >= CV_BLOB_MINW &&
  9.      pBN->h >= CV_BLOB_MINH)
  10.   ....
  11. }
  12.  
  13. This suspicious code was found in OpenCV project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V595 The 'pBN' pointer was utilized before it was verified against nullptr. Check lines: 432, 434. blobtrackingauto.cpp 432
  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