summaryrefslogtreecommitdiffstats
path: root/apps/bookmark.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/bookmark.c')
-rw-r--r--apps/bookmark.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c
index 8c3cc48391..892a3d35b2 100644
--- a/apps/bookmark.c
+++ b/apps/bookmark.c
@@ -1002,17 +1002,14 @@ static bool parse_bookmark(const char *bookmark,
if (resume_file != NULL)
{
size_t len = (end == NULL) ? strlen(s) : (size_t) (end - s);
-
len = MIN(resume_file_size - 1, len);
- strncpy(resume_file, s, len);
- resume_file[len] = 0;
+ strlcpy(resume_file, s, len + 1);
}
if (end != NULL && file_name != NULL)
{
end++;
- strncpy(file_name, end, MAX_PATH - 1);
- file_name[MAX_PATH - 1] = 0;
+ strlcpy(file_name, end, MAX_PATH);
}
return true;