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
path: root/source
diff options
context:
space:
mode:
authorGermano Cavalcantemano-wii <germano.costa@ig.com.br>2021-04-25 16:41:28 +0300
committerGermano Cavalcantemano-wii <germano.costa@ig.com.br>2021-04-25 16:41:28 +0300
commitae58db91a2f5399b479d9b2789603a68689dc99e (patch)
treea363455f05ac0b94540e384b319beee1bcb1e83d /source
parent87a70801c6a9fe5077ca882dec820a8f24deb07e (diff)
Fix T87799: Crash when switching to Info Editor
Use of uninitialized variable. Problem introduced in 87a70801c6a9fe5077ca882dec820a8f24deb07e.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_info/space_info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_info/space_info.c b/source/blender/editors/space_info/space_info.c
index 7800a90b115..e56bb44b1e6 100644
--- a/source/blender/editors/space_info/space_info.c
+++ b/source/blender/editors/space_info/space_info.c
@@ -255,7 +255,7 @@ static void info_header_region_message_subscribe(const wmRegionMessageSubscribeP
struct wmMsgBus *mbus = params->message_bus;
ARegion *region = params->region;
- wmMsgSubscribeValue msg_sub_value_region_tag_redraw;
+ wmMsgSubscribeValue msg_sub_value_region_tag_redraw = {NULL};
msg_sub_value_region_tag_redraw.owner = region;
msg_sub_value_region_tag_redraw.user_data = region;
msg_sub_value_region_tag_redraw.notify = ED_region_do_msg_notify_tag_redraw;