Advertisement
PVS-StudioWarnings

PVS-Studio warning V519 for MySQL

Nov 10th, 2014
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.63 KB | None | 0 0
  1. int ha_archive::info(uint flag)
  2. {
  3.   ...
  4.   stats.max_data_file_length= share->rows_recorded *
  5.                               stats.mean_rec_length;
  6.   stats.max_data_file_length= MAX_FILE_SIZE;
  7.   ...
  8. }
  9.  
  10. This suspicious code was found in MySQL project by PVS-Studio static code analyzer.
  11. Warning message is:
  12. V519 The 'stats.max_data_file_length' variable is assigned values twice successively. Perhaps this is a mistake. Check lines: 1597, 1598. archive ha_archive.cc 1598
  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