layout should only be null for structs, but it's checked everywhere else
and confuses Coverity (CID
1358495).
Reviewed-by: Timothy Arceri <timothy.arceri@collabora.com>
* the structure may contain a structure that contains ... a matrix
* that need the proper layout.
*/
- if (is_interface &&
+ if (is_interface && layout &&
(layout->flags.q.uniform || layout->flags.q.buffer) &&
(field_type->without_array()->is_matrix()
|| field_type->without_array()->is_record())) {