Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
b4815e5e
Commit
b4815e5e
authored
Aug 23, 2001
by
tonu@x153.internalnet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Warning fixes
parent
66b4a894
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
11 deletions
+17
-11
client/thread_test.c
client/thread_test.c
+1
-1
sql/mysqld.cc
sql/mysqld.cc
+6
-6
vio/Makefile.am
vio/Makefile.am
+10
-4
No files found.
client/thread_test.c
View file @
b4815e5e
...
...
@@ -19,7 +19,7 @@
#ifndef THREAD
int
main
(
int
argc
,
char
**
argv
)
int
main
(
int
argc
__attribute__
((
unused
)),
char
**
argv
__attribute__
((
unused
))
)
{
printf
(
"This test must be compiled with multithread support to work
\n
"
);
exit
(
1
);
...
...
sql/mysqld.cc
View file @
b4815e5e
...
...
@@ -703,12 +703,12 @@ void clean_up(bool print_message)
end_raid
();
#endif
#ifdef HAVE_OPENSSL
my_free
(
opt_ssl_key
,
MYF
(
MYF_ALLOW_ZERO_PTR
));
my_free
(
opt_ssl_cert
,
MYF
(
MYF_ALLOW_ZERO_PTR
));
my_free
(
opt_ssl_ca
,
MYF
(
MYF_ALLOW_ZERO_PTR
));
my_free
(
opt_ssl_capath
,
MYF
(
MYF_ALLOW_ZERO_PTR
));
my_free
(
opt_ssl_accceptor
,
MYF
(
MYF_ALLOW_ZERO_PTR
));
opt_ssl_key
=
opt_ssl_cert
=
opt_ssl_ca
=
opt_ssl_capath
=
opt_ssl_acceptor
=
0
;
my_free
(
opt_ssl_key
,
MYF
(
0
));
my_free
(
opt_ssl_cert
,
MYF
(
0
));
my_free
(
opt_ssl_ca
,
MYF
(
0
));
my_free
(
opt_ssl_capath
,
MYF
(
0
));
// my_free(ssl_acceptor_fd,MYF(0
));
opt_ssl_key
=
opt_ssl_cert
=
opt_ssl_ca
=
opt_ssl_capath
=
0
;
#endif
/* HAVE_OPENSSL */
free_defaults
(
defaults_argv
);
my_free
(
charsets_list
,
MYF
(
MY_ALLOW_ZERO_PTR
));
...
...
vio/Makefile.am
View file @
b4815e5e
...
...
@@ -17,11 +17,17 @@
INCLUDES
=
-I
$(srcdir)
/../include
-I
../include
$(openssl_includes)
LDADD
=
libvio.a
$(openssl_libs)
pkglib_LIBRARIES
=
libvio.a
noinst_PROGRAMS
=
viotest-ssl
noinst_PROGRAMS
=
test-ssl test-sslserver test-sslclient
noinst_HEADERS
=
viotest_ssl_SOURCES
=
viotest-ssl.c
viotest_ssl_LDADD
=
../dbug/libdbug.a libvio.a ../mysys/libmysys.a ../strings/libmystrings.a
\
libvio.a
$(openssl_libs)
test_ssl_SOURCES
=
test-ssl.c
test_ssl_LDADD
=
../dbug/libdbug.a libvio.a ../mysys/libmysys.a
\
../strings/libmystrings.a libvio.a
$(openssl_libs)
test_sslserver_SOURCES
=
test-sslserver.c
test_sslserver_LDADD
=
../dbug/libdbug.a libvio.a ../mysys/libmysys.a
\
../strings/libmystrings.a libvio.a
$(openssl_libs)
test_sslclient_SOURCES
=
test-sslclient.c
test_sslclient_LDADD
=
../dbug/libdbug.a libvio.a ../mysys/libmysys.a
\
../strings/libmystrings.a libvio.a
$(openssl_libs)
libvio_a_SOURCES
=
vio.c viosocket.c viossl.c viosslfactories.c
OMIT_DEPENDENCIES
=
pthread.h stdio.h __stdio.h stdlib.h __stdlib.h math.h
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment