-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The sizeof on dest in str_padded_copy requires the src to be a fixed buffer. Since the vendor list is an array of const char pointers, sizeof on the value is the char pointer not an array of chars. Fix this by using the _ version where we can control the inputs and use strlen here since the buffer is gaurenteed to be NUL term over sizeof. Signed-off-by: William Roberts <william.c.roberts@intel.com>
- Loading branch information
William Roberts
committed
Sep 10, 2021
1 parent
6a39746
commit 20f8d05
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters