You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
fix two reading uninitialized pointers
fixed in: tools/editor/project_settings.cpp scene/gui/graph_edit.cpp
This commit is contained in:
committed by
Hubert Jarosz
parent
19ea9ae1e5
commit
bf7f9244a9
@@ -617,7 +617,7 @@ void GraphEdit::_input_event(const InputEvent& p_ev) {
|
||||
|
||||
if (b.button_index==BUTTON_LEFT && b.pressed) {
|
||||
|
||||
GraphNode *gn;
|
||||
GraphNode *gn = NULL;
|
||||
for(int i=get_child_count()-1;i>=0;i--) {
|
||||
|
||||
gn=get_child(i)->cast_to<GraphNode>();
|
||||
|
||||
Reference in New Issue
Block a user