mirror of
https://github.com/MariaDB/server.git
synced 2025-04-12 10:15:31 +02:00
MDEV-9224: postfix - thd can be null in reload_acl_and_cache()
This commit is contained in:
parent
e6c0f25f04
commit
89a264809d
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,7 @@ bool reload_acl_and_cache(THD *thd, unsigned long long options,
|
|||
}
|
||||
|
||||
#ifdef WITH_WSREP
|
||||
if (thd->wsrep_applier)
|
||||
if (thd && thd->wsrep_applier)
|
||||
{
|
||||
/*
|
||||
In case of applier thread, do not wait for table share(s) to be
|
||||
|
|
Loading…
Add table
Reference in a new issue