You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
fixed uninitialized variables and false positives found by CppCheck
This commit is contained in:
@@ -2498,7 +2498,7 @@ bool ShaderLanguage::_get_completable_identifier(BlockNode *p_block, CompletionT
|
||||
|
||||
identifier = StringName();
|
||||
|
||||
TkPos pos;
|
||||
TkPos pos = { 0, 0 };
|
||||
|
||||
Token tk = _get_token();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user