mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
fixed bug in SSL code
updated results - now ready to push mysql-test/r/rpl000017.result: fix for new test format mysql-test/r/type_enum.result: updated result sql/mysqld.cc: fixed freeing NULL pointer
This commit is contained in:
@ -1,5 +1,6 @@
|
|||||||
reset master;
|
reset master;
|
||||||
grant file on *.* to replicate@localhost identified by 'aaaaaaaaaaaaaaab';
|
grant file on *.* to replicate@localhost identified by 'aaaaaaaaaaaaaaab';
|
||||||
|
grant file on *.* to replicate@127.0.0.1 identified by 'aaaaaaaaaaaaaaab';
|
||||||
slave start;
|
slave start;
|
||||||
drop table if exists t1;
|
drop table if exists t1;
|
||||||
create table t1(n int);
|
create table t1(n int);
|
||||||
|
File diff suppressed because one or more lines are too long
@ -2059,7 +2059,7 @@ The server will not act as a slave.");
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_OPENSSL
|
#ifdef HAVE_OPENSSL
|
||||||
my_free((gptr)ssl_acceptor_fd,MYF(0));
|
my_free((gptr)ssl_acceptor_fd,MYF(MY_ALLOW_ZERO_PTR));
|
||||||
#endif /* HAVE_OPENSSL */
|
#endif /* HAVE_OPENSSL */
|
||||||
/* Wait until cleanup is done */
|
/* Wait until cleanup is done */
|
||||||
(void) pthread_mutex_lock(&LOCK_thread_count);
|
(void) pthread_mutex_lock(&LOCK_thread_count);
|
||||||
|
Reference in New Issue
Block a user