mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fix for handling of floats inside val_int() of +, - * and /.
Build-tools/Do-compile: Make shutdown safer Docs/manual.texi: Fix of bad merge sql/log.cc: cleanup sql/sql_acl.cc: cleanup
This commit is contained in:
10
sql/log.cc
10
sql/log.cc
@ -149,11 +149,11 @@ void MYSQL_LOG::init(enum_log_type log_type_arg)
|
||||
|
||||
void MYSQL_LOG::close_index()
|
||||
{
|
||||
if(index_file >= 0)
|
||||
{
|
||||
my_close(index_file, MYF(0));
|
||||
index_file = -1;
|
||||
}
|
||||
if (index_file >= 0)
|
||||
{
|
||||
my_close(index_file, MYF(0));
|
||||
index_file = -1;
|
||||
}
|
||||
}
|
||||
|
||||
void MYSQL_LOG::open(const char *log_name, enum_log_type log_type_arg,
|
||||
|
Reference in New Issue
Block a user