mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 09:29:52 +03:00
src/Cedar/Client.c: Array compared against NULL is always false
found by coverity
This commit is contained in:
parent
4f02bafc66
commit
b8d5a85b0e
@ -8941,14 +8941,8 @@ bool CtSetPassword(CLIENT *c, RPC_CLIENT_PASSWORD *pass)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
if (pass->Password == NULL)
|
||||
{
|
||||
str = "";
|
||||
}
|
||||
else
|
||||
{
|
||||
str = pass->Password;
|
||||
}
|
||||
|
||||
str = pass->Password;
|
||||
|
||||
if (StrCmp(str, "********") != 0)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user