mirror of
https://github.com/MariaDB/server.git
synced 2025-06-12 01:53:02 +03:00
Fix for bug #12177 (errorlog file isn't closed)
4.1 version of the patch
This commit is contained in:
@ -188,6 +188,13 @@ void STDCALL mysql_server_end()
|
||||
mysql_thread_end();
|
||||
free_charsets();
|
||||
mysql_client_init= org_my_init_done= 0;
|
||||
#ifdef EMBEDDED_SERVER
|
||||
if (stderror_file)
|
||||
{
|
||||
fclose(stderror_file);
|
||||
stderror_file= 0;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
static MYSQL_PARAMETERS mysql_internal_parameters=
|
||||
|
Reference in New Issue
Block a user