if (pProperty && pProperty->m_bIsStatic) // 这里做了pProperty 的 null 检查, 如果是 null 则跑到下面的步骤
{
int contextId = this->GetContextId();
Context& c = Context::GetContext(contextId);
const char* staticClassName = this->GetObjectTypeName();
const VariableType* pVal = c.GetStaticVariable<VariableType>(staticClassName, variableId);
return *pVal;
}
const VariableType* pVal1 = VariableGettterDispatcher<VariableType, behaviac::Meta::IsRefType<VariableType>::Result>::Get(this->m_variables, this, pProperty, variableId); // 这里没有再做检查就传入了 Get,里面没做检查就进行了 dereference,可能触发 null pointer deference,这个运行路径有可能出现吗
if (pVal1)