mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
MDEV-5979 Server crashes on truncating a temporary InnoDB table on Windows
fix uninit variable
This commit is contained in:
parent
d5a185a552
commit
a5196354f6
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ int Sql_cmd_truncate_table::handler_truncate(THD *thd, TABLE_LIST *table_ref,
|
|||
bool is_tmp_table)
|
||||
{
|
||||
int error= 0;
|
||||
uint flags;
|
||||
uint flags= 0;
|
||||
DBUG_ENTER("Sql_cmd_truncate_table::handler_truncate");
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue