fix crash when atomicCounter() with no args is used.
This commit is contained in:
parent
42d9adf50b
commit
ba5c010c59
1 changed files with 1 additions and 1 deletions
|
|
@ -7387,7 +7387,7 @@ TIntermTyped* TParseContext::vkRelaxedRemapFunctionCall(const TSourceLoc& loc, T
|
||||||
}
|
}
|
||||||
} else if (function->getName() == "atomicCounter") {
|
} else if (function->getName() == "atomicCounter") {
|
||||||
// change atomicCounter into a direct read of the variable
|
// change atomicCounter into a direct read of the variable
|
||||||
if (arguments->getAsTyped()) {
|
if (arguments && arguments->getAsTyped()) {
|
||||||
result = arguments->getAsTyped();
|
result = arguments->getAsTyped();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue