1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fix for using unitialized mutex when running version compiled with --debug

This commit is contained in:
monty@narttu.mysql.fi
2003-03-04 15:02:49 +02:00
parent 6cbbbd6948
commit d0d071dca9
5 changed files with 9 additions and 18 deletions

View File

@ -200,12 +200,6 @@ int STDCALL mysql_server_init(int argc, char **argv, char **groups)
if (!opt_mysql_tmpdir || !opt_mysql_tmpdir[0])
opt_mysql_tmpdir=(char*) P_tmpdir; /* purecov: inspected */
if (init_thread_environment())
{
mysql_server_end();
return 1;
}
umask(((~my_umask) & 0666));
if (init_server_components())
{