1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

cleanup: use MYF() for mysys flags

This commit is contained in:
Sergei Golubchik
2013-01-23 16:18:09 +01:00
parent a260b15554
commit 682da0aa75
71 changed files with 136 additions and 137 deletions

View File

@ -1429,7 +1429,7 @@ public:
m_locked_tables_count(0)
{
init_sql_alloc(&m_locked_tables_root, MEM_ROOT_BLOCK_SIZE, 0,
MY_THREAD_SPECIFIC);
MYF(MY_THREAD_SPECIFIC));
}
void unlock_locked_tables(THD *thd);
~Locked_tables_list()
@ -1886,7 +1886,7 @@ public:
bzero((char*)this, sizeof(*this));
xid_state.xid.null();
init_sql_alloc(&mem_root, ALLOC_ROOT_MIN_BLOCK_SIZE, 0,
MY_THREAD_SPECIFIC);
MYF(MY_THREAD_SPECIFIC));
}
} transaction;
Global_read_lock global_read_lock;