Fix T80457: Library Override - Custom Property to Drive Child Particles results in Crash.

RNA diffing code was not dealing properly valid NULL PointerRNA (like
the empty texture slots of a ParticleSettings e.g., which were cause of
crash in that report).

To be backported to 2.90 and 2.83.
This commit is contained in:
Bastien Montagne 2020-09-14 10:28:31 +02:00 committed by Jeroen Bakker
parent 27ea086242
commit f822cd511c
Notes: blender-bot 2023-02-14 07:25:51 +01:00
Referenced by issue #80457, Library Override - Custom Property to Drive Child Particles results in Crash
1 changed files with 6 additions and 3 deletions

View File

@ -1187,9 +1187,12 @@ static bool rna_property_override_diff_propptr_validate_diffing(PointerRNA *prop
* This helps a lot in library override case, especially to detect inserted items in collections.
*/
if (!no_prop_name && (is_valid_for_diffing || do_force_name)) {
PropertyRNA *nameprop_a = RNA_struct_name_property(propptr_a->type);
PropertyRNA *nameprop_b = (propptr_b != NULL) ? RNA_struct_name_property(propptr_b->type) :
NULL;
PropertyRNA *nameprop_a = (propptr_a->type != NULL) ?
RNA_struct_name_property(propptr_a->type) :
NULL;
PropertyRNA *nameprop_b = (propptr_b != NULL && propptr_b->type != NULL) ?
RNA_struct_name_property(propptr_b->type) :
NULL;
int propname_a_len = 0, propname_b_len = 0;
char *propname_a = NULL;