Advertisement
PVS-StudioWarnings

PVS-Studio warning V521 for VTK

Nov 20th, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1. int vtkSESAMEReader::GetTableArrayStatus(const char* name)
  2. {
  3.   ...
  4.   for(i=0; i<numArrays; i++)
  5.   {
  6.     if(this->Internal->TableArrays[i], name)     <<<---
  7.     {
  8.       return this->Internal->TableArrayStatus[i];
  9.     }
  10.   }
  11.   return 0;
  12. }
  13.  
  14. This suspicious code was found in VTK project by PVS-Studio static code analyzer.
  15. Warning message is:
  16. V521 Such expressions using the ',' operator are dangerous. Make sure the expression 'this->Internal->TableArrays[i], name' is correct. vtkIO vtksesamereader.cxx 352
  17.  
  18. 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