diff options
author | Michael Widenius <monty@mysql.com> | 2010-07-19 21:53:28 +0300 |
---|---|---|
committer | Michael Widenius <monty@mysql.com> | 2010-07-19 21:53:28 +0300 |
commit | a35b48632363dbc13edf4ca6d694a630909cf92e (patch) | |
tree | 522304e12b1d69fb406d1675cc5adc3777753eb8 /plugin | |
parent | ad18f1d6a2b7f4f0358f3b372529dcc19f9e90b3 (diff) | |
download | mariadb-git-a35b48632363dbc13edf4ca6d694a630909cf92e.tar.gz |
Fixed compiler and valgrind warnings
mysql-test/valgrind.supp:
Added suppression for memory leak in dlsym() on work-amd64
plugin/auth/auth_socket.c:
Fixed compiler warning (wrong macro usage)
storage/example/ha_example.cc:
Fixed compiler warnings
storage/sphinx/ha_sphinx.cc:
Fixed compiler warnings
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/auth/auth_socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/auth/auth_socket.c b/plugin/auth/auth_socket.c index 6694816dd22..cc406dac331 100644 --- a/plugin/auth/auth_socket.c +++ b/plugin/auth/auth_socket.c @@ -115,5 +115,5 @@ maria_declare_plugin(socket_auth) "1.0", MariaDB_PLUGIN_MATURITY_BETA } -mysql_declare_plugin_end; +maria_declare_plugin_end; |