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

Bug#23950: misplaced code in mysqld.cc, main()

We should initialize before anything else.


sql/mysqld.cc:
  Move MY_INIT to the top of main().
This commit is contained in:
unknown
2007-01-02 12:56:48 -05:00
parent f7f69043ac
commit e9f6b35391

View File

@@ -3339,8 +3339,10 @@ int win_main(int argc, char **argv)
int main(int argc, char **argv)
#endif
{
DEBUGGER_OFF;
MY_INIT(argv[0]); // init my_sys library & pthreads
/* ^^^ Nothing should be before this line! */
DEBUGGER_OFF;
#ifdef _CUSTOMSTARTUPCONFIG_
if (_cust_check_startup())