1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-18 01:33:00 +03:00

src/Cedar/Admin.c: remove unused condition, make coverity scan cleaner

HubName == NULL  always evaluated as "false", so we can remove it
This commit is contained in:
Ilya Shipitsin 2018-08-05 22:33:16 +05:00
parent 828d3b2ffb
commit 191c680ff7

View File

@ -188,7 +188,7 @@
return err; \
}
#define CHECK_RIGHT \
if (a->ServerAdmin == false && (t->HubName == NULL || StrCmpi(a->HubName, t->HubName) != 0)) \
if (a->ServerAdmin == false && (StrCmpi(a->HubName, t->HubName) != 0)) \
return ERR_NOT_ENOUGH_RIGHT; \
if (IsEmptyStr(t->HubName)) \
return ERR_INVALID_PARAMETER;