Merge pull request #12163 from jdgleaver/ozone-node-init

(Ozone) Ensure all members are initialised when allocating nodes
This commit is contained in:
Autechre 2021-03-16 12:27:34 +01:00 committed by GitHub
commit fddf58d152
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3790,6 +3790,7 @@ ozone_node_t *ozone_alloc_node(void)
node->content_icon = 0;
node->fullpath = NULL;
node->sublabel_lines = 0;
node->wrap = false;
return node;
}