mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
fix runtime warning of freeing null ptr
This commit is contained in:
@ -3979,10 +3979,12 @@ static void store_schema_partitions_record(THD *thd, TABLE *schema_table,
|
|||||||
{
|
{
|
||||||
char *ts= showing_table->file->get_tablespace_name(thd);
|
char *ts= showing_table->file->get_tablespace_name(thd);
|
||||||
if(ts)
|
if(ts)
|
||||||
|
{
|
||||||
table->field[24]->store(ts, strlen(ts), cs);
|
table->field[24]->store(ts, strlen(ts), cs);
|
||||||
|
my_free(ts, MYF(0));
|
||||||
|
}
|
||||||
else
|
else
|
||||||
table->field[24]->set_null();
|
table->field[24]->set_null();
|
||||||
my_free(ts, MYF(0));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user