Fix mistake in prior commit - should be concatenated to string

pull/14353/head
LibretroAdmin 2022-08-25 15:17:31 +02:00
parent 6caa139700
commit 5bb3fbab93
1 changed files with 1 additions and 1 deletions

View File

@ -875,7 +875,7 @@ static void content_file_get_path(
content_path, sizeof(info_path));
info_path[_len ] = '#';
info_path[_len+1] = '\0';
strlcpy(info_path, archive_file, sizeof(info_path));
strlcat(info_path, archive_file, sizeof(info_path));
/* Update 'content' string_list */
string_list_set(content, idx, info_path);