Advertisement
PVS-StudioWarnings

PVS-Studio warning V568 for Miranda IM

Nov 21st, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.58 KB | None | 0 0
  1. static ROWCELL* rowOptTA[100];
  2.  
  3. void rowOptAddContainer(HWND htree, HTREEITEM hti)
  4. {
  5.   ...
  6.   ZeroMemory(rowOptTA,sizeof(&rowOptTA));
  7.   ...
  8. }
  9.  
  10. Only one item is cleared.
  11.  
  12.  
  13. This suspicious code was found in Miranda IM project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V568 It's odd that the argument of sizeof() operator is the '& rowOptTA' expression.  clist_modern  modern_rowtemplateopt.cpp  258
  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