Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rmw_fastrtps_shared_cpp/src/rmw_node_info_and_types.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ rmw_ret_t __get_guid_by_name(
const char * node_namespace, GUID_t & guid)
{
auto impl = static_cast<CustomParticipantInfo *>(node->data);
if (strcmp(node->name, node_name) == 0) {
if (strcmp(node->name, node_name) == 0 && strcmp(node->namespace_, node_namespace) == 0) {
guid = impl->participant->getGuid();
} else {
std::set<GUID_t> nodes_in_desired_namespace;
Expand Down