Advertisement
PVS-StudioWarnings

PVS-Studio warning V517 for Notepad++

Nov 27th, 2014
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.75 KB | None | 0 0
  1. static void ColouriseVHDLDoc(....)
  2. {
  3.   ...
  4.   } else if (sc.Match('-', '-')) {    <<<---
  5.     sc.SetState(SCE_VHDL_COMMENT);
  6.     sc.Forward();
  7.   } else if (sc.Match('-', '-')) {    <<<---
  8.     if (sc.Match("--!"))
  9.       sc.SetState(SCE_VHDL_COMMENTLINEBANG);
  10.     else
  11.       sc.SetState(SCE_VHDL_COMMENT);
  12.   }
  13.   ...
  14. }
  15.  
  16. This suspicious code was found in Notepad++ project by PVS-Studio static code analyzer.
  17. Warning message is:
  18. V517 The use of 'if (A) {...} else if (A) {...}' pattern was detected. There is a probability of logical error presence. Check lines: 130, 133. lexvhdl.cxx 130
  19.  
  20. 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