mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Fixup cd2c0e013c
The variable 'dlh' was being used uninitialized if WSREP_PROVIDER is not set.
This commit is contained in:
@ -90,7 +90,7 @@ int main(int argc, char **argv)
|
|||||||
if (!provider)
|
if (!provider)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "WSREP_PROVIDER is not set\n");
|
fprintf(stderr, "WSREP_PROVIDER is not set\n");
|
||||||
goto err;
|
return 1;
|
||||||
}
|
}
|
||||||
if (!(dlh = dlopen(provider, RTLD_NOW | RTLD_LOCAL)))
|
if (!(dlh = dlopen(provider, RTLD_NOW | RTLD_LOCAL)))
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user