From 66e494ead31adc98a406dd2f63d46238aaa106c8 Mon Sep 17 00:00:00 2001 From: unknown <monty@mysql.com> Date: Tue, 26 Oct 2004 19:59:33 +0300 Subject: [PATCH] Added missing initialier --- sql-common/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql-common/client.c b/sql-common/client.c index 7bf9c90254d..b847c467b85 100644 --- a/sql-common/client.c +++ b/sql-common/client.c @@ -877,12 +877,12 @@ static const char *default_options[]= }; static TYPELIB option_types={array_elements(default_options)-1, - "options",default_options}; + "options",default_options, NULL}; const char *sql_protocol_names_lib[] = { "TCP", "SOCKET", "PIPE", "MEMORY", NullS }; TYPELIB sql_protocol_typelib = {array_elements(sql_protocol_names_lib)-1,"", - sql_protocol_names_lib}; + sql_protocol_names_lib, NULL}; static int add_init_command(struct st_mysql_options *options, const char *cmd) { -- 2.30.9