Advertisement
PVS-StudioWarnings

PVS-Studio warning V519 for Source SDK

Nov 24th, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.70 KB | None | 0 0
  1. void GetFPSColor( int nFps, unsigned char ucColor[3] )
  2. {
  3.   ....
  4.   int nFPSThreshold1 = 20;
  5.   int nFPSThreshold2 = 15;
  6.  
  7.   if (IsPC() &&
  8.       g_pMaterialSystemHardwareConfig->GetDXSupportLevel() >= 95)
  9.   {
  10.     nFPSThreshold1 = 60;
  11.     nFPSThreshold1 = 50;
  12.   }
  13.   ....
  14. }
  15.  
  16. This suspicious code was found in Source SDK project by PVS-Studio static code analyzer.
  17. Warning message is:
  18. V519 The 'nFPSThreshold1' variable is assigned values twice successively. Perhaps this is a mistake. Check lines: 191, 192. Client (HL2) vgui_fpspanel.cpp 192
  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