Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

memory leak issue #172

Merged
merged 5 commits into from
Nov 7, 2017
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
18 changes: 13 additions & 5 deletions rmw_fastrtps_cpp/src/rmw_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,16 +166,24 @@ get_security_file_paths(
const char * file_names[3] = {"ca.cert.pem", "cert.pem", "key.pem"};
size_t num_files = sizeof(file_names) / sizeof(char *);

const char * file_prefix = "file://";
std::string file_prefix("file://");

std::string tmpstr;
for (size_t i = 0; i < num_files; i++) {
tmpstr = std::string(rcutils_join_path(node_secure_root, file_names[i]));
if (!rcutils_is_readable(tmpstr.c_str())) {
const char * file_path = rcutils_join_path(node_secure_root, file_names[i]);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Really, rcutils_join_path should not return const char * but just char * instead of needing to const cast it to free the result...

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I agree with that. I'll do a separate PR with that, since every place that uses it has to do the same thing.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if (!file_path) {
return false;
}
security_files_paths[i] = std::string(file_prefix + tmpstr);

if (rcutils_is_readable(file_path)) {
security_files_paths[i] = file_prefix + std::string(file_path);
} else {
free(const_cast<char *>(file_path));
return false;
}

free(const_cast<char *>(file_path));
}

return true;
}

Expand Down