1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Fixes after merge with 4.0

This commit is contained in:
monty@mashka.mysql.fi
2002-11-21 22:25:53 +02:00
parent dac6498f9b
commit 806294c573
18 changed files with 76 additions and 72 deletions

View File

@@ -214,11 +214,11 @@ void THD::init(void)
void THD::change_user(void)
{
cleanup();
cleanup_done=0;
cleanup_done= 0;
init();
hash_init(&user_vars, USER_VARS_HASH_SIZE, 0, 0,
hash_init(&user_vars, system_charset_info, USER_VARS_HASH_SIZE, 0, 0,
(hash_get_key) get_var_key,
(hash_free_key) free_user_var,0);
(hash_free_key) free_user_var, 0);
}