mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-02-02 10:00:38 +01:00
Fixed bug #8331 : Crash of fbclient.dll on Windows
This commit is contained in:
parent
f67e22f8a3
commit
7fffc67c10
@ -7328,7 +7328,7 @@ static rem_port* analyze(ClntAuthBlock& cBlock, PathName& attach_name, unsigned
|
||||
{
|
||||
#ifdef TRUSTED_AUTH
|
||||
const char* const pluginName = cBlock.plugins.name();
|
||||
if (legacySSP || fb_utils::stricmp(pluginName, "WIN_SSPI") != 0)
|
||||
if (legacySSP || !pluginName || fb_utils::stricmp(pluginName, "WIN_SSPI") != 0)
|
||||
throw;
|
||||
|
||||
// Retry connect with failed plugin only and using legacy security package
|
||||
|
Loading…
Reference in New Issue
Block a user