mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-17 04:37:19 +00:00
94cc46bc16
Fix build with gcc7 Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
14 lines
468 B
Diff
14 lines
468 B
Diff
Index: mariadb-5.5.55/client/mysql.cc
|
|
===================================================================
|
|
--- mariadb-5.5.55.orig/client/mysql.cc
|
|
+++ mariadb-5.5.55/client/mysql.cc
|
|
@@ -2850,7 +2850,7 @@ You can turn off this feature to get a q
|
|
mysql_free_result(fields);
|
|
break;
|
|
}
|
|
- field_names[i][num_fields*2]= '\0';
|
|
+ field_names[i][num_fields*2][0]= '\0';
|
|
j=0;
|
|
while ((sql_field=mysql_fetch_field(fields)))
|
|
{
|