Svace: Fixed DEREF_OF_NULL.RET.STAT warning.

This commit is contained in:
ocbuild 2022-01-13 14:32:57 +03:00
parent 3d37d5c9f4
commit d71c131743

View File

@ -67,6 +67,8 @@ OrderedCollectionUserStruct (
IN CONST RED_BLACK_TREE_NODE *Node
)
{
ASSERT (Node != NULL);
return Node->UserStruct;
}