summaryrefslogtreecommitdiff
path: root/firmware/common/file_internal.c
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2022-11-15 11:24:34 -0500
committerWilliam Wilgus <wilgus.william@gmail.com>2022-11-17 01:54:46 -0500
commit972810f6cfd9715de1b182978c4d26e67dcf72cf (patch)
tree71b62ce1bb22cfb5ea8974667b0b74bb1697fe9e /firmware/common/file_internal.c
parent0b7a387671a56a1b526b3672cd695b5764597f3e (diff)
downloadrockbox-972810f6cfd9715de1b182978c4d26e67dcf72cf.tar.gz
rockbox-972810f6cfd9715de1b182978c4d26e67dcf72cf.zip
strlcpy finish cleanup
remove strlcpy & strlcat from string.h document suspicious strlcpy call convert strlcat.h users to string-extra Change-Id: I313e75db86385c0e6d1aee75d252093be4935f60
Diffstat (limited to 'firmware/common/file_internal.c')
-rw-r--r--firmware/common/file_internal.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/common/file_internal.c b/firmware/common/file_internal.c
index 9ddbb232b4..a73d9beaa2 100644
--- a/firmware/common/file_internal.c
+++ b/firmware/common/file_internal.c
@@ -227,6 +227,7 @@ void iso_decode_d_name(char *d_name)
227 return; 227 return;
228 228
229 char shortname[13]; 229 char shortname[13];
230 /* this only gets called in the case of DOS (8.3) filenames */
230 size_t len = strlcpy(shortname, d_name, sizeof (shortname)); 231 size_t len = strlcpy(shortname, d_name, sizeof (shortname));
231 /* This MUST be the default codepage thus not something that could be 232 /* This MUST be the default codepage thus not something that could be
232 loaded on call */ 233 loaded on call */