Advertisement
PVS-StudioWarnings

PVS-Studio warning V564 for MySQL

Nov 24th, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.69 KB | None | 0 0
  1. int ha_innobase::create(....)
  2. {
  3.   ...
  4.   if (srv_file_per_table
  5.       && !mysqld_embedded
  6.       && (!create_info->options & HA_LEX_CREATE_TMP_TABLE)) {
  7.   ...
  8. }
  9.  
  10. This is what should have been written here: (!(create_info->options & HA_LEX_CREATE_TMP_TABLE))
  11.  
  12. This suspicious code was found in MySQL project by PVS-Studio static code analyzer.
  13. Warning message is:
  14. V564 The '&' operator is applied to bool type value. You've probably forgotten to include parentheses or intended to use the '&&' operator. innobase ha_innodb.cc 6789
  15.  
  16. 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