Fix T44040: Blender crashes when nodes are muted

It was actually an old issue with wrong conversion happening for muted
nodes, which wasn't visible before memory optimization commit.

This is to be backported to the final release.
This commit is contained in:
Sergey Sharybin 2015-03-19 16:04:49 +05:00
parent 8108fc77c6
commit bef0649151
Notes: blender-bot 2023-02-14 09:21:30 +01:00
Referenced by issue #44040, Blender crashes when nodes are muted
1 changed files with 2 additions and 2 deletions

View File

@ -101,12 +101,12 @@ void NodeOperationBuilder::convertToOperations(ExecutionSystem *system)
}
}
resolve_proxies();
add_datatype_conversions();
add_operation_input_constants();
resolve_proxies();
determineResolutions();
/* surround complex ops with read/write buffer */