Fix (unreported) mistake in argument passing.

passing the address of the pointer instead of the pointer itself...
This commit is contained in:
Bastien Montagne 2020-05-07 16:35:33 +02:00
parent cb8a197bc7
commit 339c3e3473
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ void BKE_lib_query_idpropertiesForeachIDLink_callback(IDProperty *id_prop, void
static void library_foreach_node_socket(LibraryForeachIDData *data, bNodeSocket *sock)
{
IDP_foreach_property(
sock->prop, IDP_TYPE_FILTER_ID, BKE_lib_query_idpropertiesForeachIDLink_callback, &data);
sock->prop, IDP_TYPE_FILTER_ID, BKE_lib_query_idpropertiesForeachIDLink_callback, data);
switch ((eNodeSocketDatatype)sock->type) {
case SOCK_OBJECT: {