diff options
author | Christian Soffke <christian.soffke@gmail.com> | 2023-01-14 22:54:20 +0100 |
---|---|---|
committer | Christian Soffke <christian.soffke@gmail.com> | 2023-01-19 15:36:18 -0500 |
commit | 4d53d1b52b858d4a1e90fc74fb93cda957d00cb4 (patch) | |
tree | ba00fc4fb84f148c84ea3e98a330d50501786cfb | |
parent | f441d6bf05668a475525682dffdbca3555d63fdb (diff) | |
download | rockbox-4d53d1b52b.tar.gz rockbox-4d53d1b52b.zip |
PictureFlow: fix_path_part checked too many chars
Shouldn't have any effect if album_name
is null-terminated, but still....
Change-Id: I51acb6c7858347d3bd922758ac4f0fcde349c9e1
-rw-r--r-- | apps/plugins/pictureflow/pictureflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/pictureflow/pictureflow.c b/apps/plugins/pictureflow/pictureflow.c index 999ed2563f..65446a1565 100644 --- a/apps/plugins/pictureflow/pictureflow.c +++ b/apps/plugins/pictureflow/pictureflow.c @@ -4190,7 +4190,7 @@ static int context_menu(void) /* add a leading slash so that catalog_add_to_a_playlist later prefills the name when creating a new playlist */ rb->snprintf(album_name, MAX_PATH, "/%s", get_album_name(center_index)); - rb->fix_path_part(album_name, 1, sizeof(album_name)); + rb->fix_path_part(album_name, 1, sizeof(album_name) - 2); file_name = album_name; attr = ATTR_DIRECTORY; } |