Advertisement
PVS-StudioWarnings

PVS-Studio warning V636 for FlightGear

Nov 20th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.68 KB | None | 0 0
  1. bool FGAIAircraft::fpExecutable(time_t now) {
  2.   double rand_exec_time = (rand() % 100) / 100;
  3.   return (dt_count > (0.1+rand_exec_time)) &&
  4.           (fp->isActive(now));
  5. }
  6.  
  7. This suspicious code was found in FlightGear project by PVS-Studio static code analyzer.
  8. Warning message is:
  9. V636 The '(rand() % 100) / 100' expression was implicitly casted from 'int' type to 'double' type. Consider utilizing an explicit type cast to avoid the loss of a fractional part. An example: double A = (double)(X) / Y;. aiaircraft.cxx 780
  10.  
  11. 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