Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2021-06-07 15:54:49 +0300
committerHans Goudey <h.goudey@me.com>2021-06-07 15:54:49 +0300
commit7f1d1b03adffdad000b04385cd7104255150a96d (patch)
treed94d9ced71bc27109563d00ec509dce788346815 /source/blender/nodes
parentabee9a85d407a4cd61a8f1535ab5ccbb2b49c500 (diff)
Cleanup: Fix uninitialized variable warning
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_delete_geometry.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_delete_geometry.cc b/source/blender/nodes/geometry/nodes/node_geo_delete_geometry.cc
index 0e053a6d0e9..910adc467d6 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_delete_geometry.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_delete_geometry.cc
@@ -624,6 +624,7 @@ static void delete_mesh_selection(MeshComponent &component,
break;
default:
BLI_assert_unreachable();
+ mesh_out = nullptr;
break;
}
component.replace_mesh_but_keep_vertex_group_names(mesh_out);