From 2c3014e8a787713be57e47d47fd8cc0bfbdb6b45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20M=C3=A4kel=C3=A4?= Date: Thu, 11 Mar 2021 19:14:35 +0200 Subject: [PATCH] MDEV-24668 fixup: uninitialized return value with Galera --- sql/sql_acl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/sql_acl.cc b/sql/sql_acl.cc index b8c061456c8..ddaa54588d7 100644 --- a/sql/sql_acl.cc +++ b/sql/sql_acl.cc @@ -3794,7 +3794,7 @@ bool change_password(THD *thd, LEX_USER *user) char buff[512]; ulong query_length= 0; enum_binlog_format save_binlog_format; - bool result, acl_cache_is_locked= false; + bool result= false, acl_cache_is_locked= false; ACL_USER *acl_user; ACL_USER::AUTH auth; const char *password_plugin= 0;