Advertisement
PVS-StudioWarnings

PVS-Studio warning V568 for OpenCV

Nov 21st, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.54 KB | None | 0 0
  1. CAPDRIVERCAPS caps;
  2.  
  3. bool CvCaptureCAM_VFW::open( int wIndex )
  4. {
  5.   ....
  6.   memset( &caps, 0, sizeof(caps));
  7.   capDriverGetCaps( hWndC, &caps, sizeof(&caps));
  8.   ....
  9. }
  10.  
  11. This suspicious code was found in OpenCV project by PVS-Studio static code analyzer.
  12. Warning message is:
  13. V568 It's odd that the argument of sizeof() operator is the '& caps' expression. cap_vfw.cpp 409
  14.  
  15. 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