1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-13 07:13:00 +03:00

Merge PR #1445: src/Cedar/SW.c: treat "0" build as legitimate

This commit is contained in:
Davide Beatrici 2021-08-01 12:42:43 +02:00 committed by GitHub
commit 97a04888b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4005,11 +4005,6 @@ SW_LOGFILE *SwLoadLogFile(SW *sw, wchar_t *filename)
CfgGetStr(info, "ComponentName", component_name, sizeof(component_name));
build = CfgGetInt(info, "Build");
if (build == 0)
{
goto LABEL_CLEANUP;
}
c = SwFindComponent(sw, component_name);
if (c == NULL)
{