summaryrefslogtreecommitdiff
path: root/dev-db/mysql-connector-c/files/20028_all_mysql-5.6-gcc7.patch
blob: cf8caedb7f1b8672c56dc425ff58b89cba4a869e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/sql-common/client_authentication.cc b/sql-common/client_authentication.cc
index eaeb2d4..035ecd2 100644
--- a/sql-common/client_authentication.cc
+++ b/sql-common/client_authentication.cc
@@ -84,7 +84,7 @@ RSA *rsa_init(MYSQL *mysql)
 
   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] != '\0')
   {
     pub_key_file= fopen(mysql->options.extension->server_public_key_path,
                         "r");