mysql: fix gcc7 build

This commit is contained in:
Sascha Kuehndel (InuSasha) 2017-05-06 17:05:56 +02:00
parent dad8f97c02
commit 6abb6376e6
No known key found for this signature in database
GPG Key ID: 15FED89617B88D1B

View File

@ -0,0 +1,11 @@
--- a/sql-common/client_authentication.cc 2017-05-06 16:38:34.349486565 +0200
+++ b/sql-common/client_authentication.cc 2017-05-06 16:41:32.286431336 +0200
@@ -84,7 +84,7 @@
if (mysql->options.extension != NULL &&
mysql->options.extension->server_public_key_path != NULL &&
- mysql->options.extension->server_public_key_path != '\0')
+ *(mysql->options.extension->server_public_key_path) != '\0')
{
pub_key_file= fopen(mysql->options.extension->server_public_key_path,
"r");