Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
comment fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
wjwwood committed Apr 10, 2017
1 parent c70f9f7 commit 81639d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rmw_connext_shared_cpp/src/shared_functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,9 @@ create_node(
RMW_SET_ERROR_MSG("failed to get default participant qos");
return NULL;
}
participant_qos.participant_name.name = DDS::String_dup(name); // DDS appears to free this.
// This String_dup is not matched with a String_free because DDS appears to
// free this automatically.
participant_qos.participant_name.name = DDS::String_dup(name);
// forces local traffic to be sent over loopback,
// even if a more efficient transport (such as shared memory) is installed
// (in which case traffic will be sent over both transports)
Expand Down

0 comments on commit 81639d1

Please sign in to comment.