Advertisement
PVS-StudioWarnings

PVS-Studio warning V517 for Doom3

Nov 26th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.58 KB | None | 0 0
  1. const char *idAnim::AddFrameCommand(....)
  2. {
  3.   ...
  4.   } else if ( token == "muzzle_flash" ) {
  5.   ...
  6.   } else if ( token == "muzzle_flash" ) {
  7.   ...
  8. }
  9.  
  10. This suspicious code was found in Doom3 project by PVS-Studio static code analyzer.
  11. Warning message is:
  12. V517 The use of 'if (A) {...} else if (A) {...}' pattern was detected. There is a probability of logical error presence. Check lines: 524, 533. Game anim_blend.cpp 524
  13.  
  14. 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