diff options
author | Aditya A <aditya.a@oracle.com> | 2018-07-09 17:25:49 +0530 |
---|---|---|
committer | Aditya A <aditya.a@oracle.com> | 2018-07-09 17:25:49 +0530 |
commit | c54271723c6f2f4e5b77cd8faf91e89412730209 (patch) | |
tree | 98846d0d72c9d916a60559b0c8f091ab8466e16e /client/mysql.cc | |
parent | 28b052190e377bdfe176e1dc71d268b94c832263 (diff) | |
download | mariadb-git-c54271723c6f2f4e5b77cd8faf91e89412730209.tar.gz |
Bug #26275510 BUNDLED ZLIB DOESN'T INCLUDE FIXES FOR SOME VULNERABILITIES
Upgrading the zlib lib to 1.2.11
Diffstat (limited to 'client/mysql.cc')
-rw-r--r-- | client/mysql.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysql.cc b/client/mysql.cc index bc32a58f37e..8510361a54e 100644 --- a/client/mysql.cc +++ b/client/mysql.cc @@ -2671,7 +2671,7 @@ You can turn off this feature to get a quicker startup with -A\n\n"); mysql_free_result(fields); break; } - field_names[i][num_fields*2]= NULL; + field_names[i][num_fields*2]= '\0'; j=0; while ((sql_field=mysql_fetch_field(fields))) { |