Advertisement
PVS-StudioWarnings

PVS-Studio warning V547 for MTASA

Nov 21st, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.54 KB | None | 0 0
  1. unsigned long long Get ( void );
  2.  
  3. void CEffectClonerImpl::MaybeTidyUp ( void )
  4. {
  5.   ....
  6.   if ( m_TidyupTimer.Get () < 0 )
  7.     return;
  8.   ....
  9. }
  10.  
  11. This suspicious code was found in MTASA project by PVS-Studio static code analyzer.
  12. Warning message is:
  13. V547 Expression 'm_TidyupTimer.Get() < 0' is always false. Unsigned type value is never < 0. crenderitem.effectcloner.cpp 182
  14.  
  15. 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