Prevent shader crash if name of variable overrides function name
This commit is contained in:
parent
b71f23169a
commit
76324bec8d
|
@ -2914,6 +2914,16 @@ ShaderLanguage::Node *ShaderLanguage::_parse_expression(BlockNode *p_block, cons
|
|||
|
||||
bool ok = _parse_function_arguments(p_block, p_builtin_types, func, &carg);
|
||||
|
||||
// Check if block has a variable with the same name as function to prevent shader crash.
|
||||
ShaderLanguage::BlockNode *bnode = p_block;
|
||||
while (bnode) {
|
||||
if (bnode->variables.has(name)) {
|
||||
_set_error("Expected function name");
|
||||
return NULL;
|
||||
}
|
||||
bnode = bnode->parent_block;
|
||||
}
|
||||
|
||||
//test if function was parsed first
|
||||
for (int i = 0; i < shader->functions.size(); i++) {
|
||||
if (shader->functions[i].name == name) {
|
||||
|
|
Loading…
Reference in New Issue