mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
fix "Access to field 'p' results in a dereference of a null pointer (loaded from field 'Folders')" found by clang static analyzer
This commit is contained in:
parent
39cf3a77cc
commit
095d5e7b70
@ -2338,6 +2338,11 @@ void CfgDeleteFolder(FOLDER *f)
|
||||
return;
|
||||
}
|
||||
|
||||
if(f->Folders == NULL)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
// Remove all subfolders
|
||||
num = LIST_NUM(f->Folders);
|
||||
ff = Malloc(sizeof(FOLDER *) * num);
|
||||
|
Loading…
Reference in New Issue
Block a user