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

Fixes for SLE Micro #215

Merged
merged 1 commit into from
Oct 17, 2024
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
6 changes: 4 additions & 2 deletions tools/introspection.c
Original file line number Diff line number Diff line change
Expand Up @@ -1824,8 +1824,10 @@ extract_ulp_from_so_to_mem(const char *livepatch, bool revert, char **out,

/* Get full path to patch buffer. */
if (realpath(livepatch, &path_buffer[path_size]) == NULL) {
WARN("Unable to retrieve realpath to %s", livepatch);
return 0;
/* If we can't figure out the realpath, then use the path it was given to
us. */
DEBUG("Unable to retrieve realpath to %s: %s", livepatch, libpulp_strerror(errno));
strcpy(&path_buffer[path_size], livepatch);
}
path_size = strlen(path_buffer) + 1;

Expand Down
Loading