Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib: rpmsg: replace strncpy with internal strlcpy
The strncpy function does not ensure that the destination string is null-terminated. To address this issue, replace strncpy with the internal strlcpy function, which guarantees null-termination of the destination string. Note: (void)strlcpy(...) indicates that the return value is intentionally ignored. Signed-off-by: Arnaud Pouliquen <[email protected]> (cherry picked from commit e83acc98ad18f27bd1c12de808aaed84a0091791) Upstream PR: OpenAMP/open-amp#620 Signed-off-by: Tomi Fontanilles <[email protected]>
- Loading branch information