Advertisement
PVS-StudioWarnings

PVS-Studio warning V655 for Scilab

Nov 24th, 2014
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.59 KB | None | 0 0
  1. int sci_displaytree(char *fname, unsigned long fname_len)
  2. {
  3.   ....
  4.   string szCurLevel = "";
  5.   ....
  6.   //Add node level
  7.   if (szCurLevel != "")
  8.   {
  9.     szCurLevel + ".";
  10.   }
  11.   ....
  12. }
  13.  
  14. This suspicious code was found in Scilab project by PVS-Studio static code analyzer.
  15. Warning message is:
  16. V655 The strings was concatenated but are not utilized. Consider inspecting the 'szCurLevel + "."' expression. sci_displaytree.cpp 80
  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