mirror of
https://github.com/MariaDB/server.git
synced 2025-03-03 09:43:14 +01:00
Fix sys_vars.wsrep_provider_options_basic test failure.
This commit is contained in:
parent
5ca8121292
commit
1d821bad8c
1 changed files with 2 additions and 1 deletions
|
@ -86,7 +86,8 @@ static wsrep_status_t dummy_options_set(
|
|||
static char* dummy_options_get (wsrep_t* w)
|
||||
{
|
||||
WSREP_DBUG_ENTER(w);
|
||||
return strdup(WSREP_DUMMY(w)->options);
|
||||
char * opt= WSREP_DUMMY(w)->options;
|
||||
return opt ? strdup(opt) : NULL;
|
||||
}
|
||||
|
||||
static wsrep_status_t dummy_connect(
|
||||
|
|
Loading…
Add table
Reference in a new issue