You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +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
@@ -966,7 +966,7 @@ void ProjectSettings::_autoload_delete(Object *p_item,int p_column, int p_button
|
||||
undo_redo->commit_action();
|
||||
} else {
|
||||
|
||||
TreeItem *swap;
|
||||
TreeItem *swap = NULL;
|
||||
|
||||
if (p_button==1) {
|
||||
swap=ti->get_prev();
|
||||
|
||||
Reference in New Issue
Block a user