Fix missing null terminator in runtime path resolution on Linux #85350
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
readlink does not null terminate the output buffer. The existing code passed the full buffer size to readlink, which did not leave any space to append a terminator.
This change passes size -1 to readlink and terminates the buffer with a '\0' after a successful read to avoid reading past the end of the buffer.
This change is consistent with the usage pattern seen in swift-foundation-icu / icuSources / common / putil.cpp