mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 09:29:52 +03:00
src/Mayaqua/Cfg.c: Array compared against NULL is always false
found by coverity
This commit is contained in:
parent
2e503640ab
commit
4f02bafc66
@ -133,7 +133,7 @@ void BackupCfgWEx(CFG_RW *rw, FOLDER *f, wchar_t *original, UINT revision_number
|
||||
wchar_t datestr[MAX_PATH];
|
||||
SYSTEMTIME st;
|
||||
// Validate arguments
|
||||
if (f == NULL || filename == NULL || rw == NULL)
|
||||
if (f == NULL || rw == NULL)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user