mirror of
https://github.com/MariaDB/server.git
synced 2025-06-15 00:02:46 +03:00
ASAN error in is_stat_table()
don't memcmp beyond the first argument's end Also: use my_strcasecmp(table_alias_charset), like elsewhere, not memcmp
This commit is contained in:
@ -3990,11 +3990,11 @@ bool is_stat_table(const char *db, const char *table)
|
|||||||
{
|
{
|
||||||
DBUG_ASSERT(db && table);
|
DBUG_ASSERT(db && table);
|
||||||
|
|
||||||
if (!memcmp(db, stat_tables_db_name.str, stat_tables_db_name.length))
|
if (!my_strcasecmp(table_alias_charset, db, stat_tables_db_name.str))
|
||||||
{
|
{
|
||||||
for (uint i= 0; i < STATISTICS_TABLES; i ++)
|
for (uint i= 0; i < STATISTICS_TABLES; i ++)
|
||||||
{
|
{
|
||||||
if (!memcmp(table, stat_table_name[i].str, stat_table_name[i].length))
|
if (!my_strcasecmp(table_alias_charset, table, stat_table_name[i].str))
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user