1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00
additional changes (after discussion with Monty)


libmysql/libmysql.c:
  it's good to check my_thread_init() result as well
sql/client_settings.h:
  0 is more relevant here
This commit is contained in:
unknown
2003-12-18 18:12:00 +04:00
parent 886307f282
commit 195b8ac5dc
2 changed files with 2 additions and 2 deletions

View File

@ -136,7 +136,7 @@ int STDCALL mysql_server_init(int argc, char **argv, char **groups)
}
#ifdef THREAD
else
my_thread_init(); /* Init if new thread */
result= (int)my_thread_init(); /* Init if new thread */
#endif
return result;
}