mirror of
https://github.com/MariaDB/server.git
synced 2026-05-03 13:45:34 +02:00
fix invalid memory access
This commit is contained in:
parent
4d980a4701
commit
487a064783
1 changed files with 4 additions and 1 deletions
|
|
@ -3540,7 +3540,10 @@ int spider_handlersocket_share::init()
|
|||
|
||||
if (
|
||||
(error_num = create_table_names_str()) ||
|
||||
(error_num = create_column_name_str())
|
||||
(
|
||||
spider_share->table_share &&
|
||||
(error_num = create_column_name_str())
|
||||
)
|
||||
) {
|
||||
DBUG_RETURN(HA_ERR_OUT_OF_MEM);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue