Advertisement
PVS-StudioWarnings

PVS-Studio warning V666 for ITK

Nov 10th, 2014
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.77 KB | None | 0 0
  1. bool MetaScene::
  2. Read(const char *_headerName)
  3. {
  4.   ....
  5.   else if(!strncmp(objectType.c_str(),"Image",5) ||
  6.   ....
  7.   else if(!strncmp(objectType.c_str(),"Blob",4) ||
  8.   ....
  9.   else if(!strncmp(objectType.c_str(),"Landmark",8) ||
  10.   ....
  11.   else if(!strncmp(objectType.c_str(),"Surface",5) ||
  12.   ....
  13. }
  14.  
  15. This suspicious code was found in ITK project by PVS-Studio static code analyzer.
  16. Warning message is:
  17. V666 Consider inspecting third argument of the function 'strncmp'. It is possible that the value does not correspond with the length of a string which was passed with the second argument. metascene.cxx 313
  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