Skip to content

Commit

Permalink
feat(asset filtering): fix for multiple capability filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianDue committed Dec 6, 2024
1 parent 2c57265 commit d6e72eb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/registry_module_callback_functions.c
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,9 @@ UA_StatusCode filter_agents(UA_Server *server,
break;
}
}
if(agent_is_suitable == false){
break;
}
}
if(agent_is_suitable == true){
agent_result_list = (UA_NodeId*) UA_realloc(agent_result_list, (number_result_agents+1)*sizeof(UA_NodeId));
Expand Down

0 comments on commit d6e72eb

Please sign in to comment.