diff options
Diffstat (limited to 'apps/bookmark.c')
-rw-r--r-- | apps/bookmark.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c index d594c51320..0cc2807609 100644 --- a/apps/bookmark.c +++ b/apps/bookmark.c @@ -1075,7 +1075,7 @@ static bool parse_bookmark(const char *bookmark, const bool parse_filenames, con { size_t len = (end == NULL) ? strlen(s) : (size_t) (end - s); len = MIN(TEMP_BUF_SIZE - 1, len); - strlcpy(global_temp_buffer, s, len + 1); + strmemccpy(global_temp_buffer, s, len + 1); if (end != NULL) { @@ -1089,7 +1089,7 @@ static bool parse_bookmark(const char *bookmark, const bool parse_filenames, con end++; } } - strlcpy(global_filename, end, MAX_PATH); + strmemccpy(global_filename, end, MAX_PATH); } } |