Make char array big enough

This commit is contained in:
twinaphex 2020-07-23 05:21:32 +02:00
parent 73e63d369c
commit d72b118a2d

View File

@ -87,7 +87,7 @@ static bool get_thumbnail_paths(
char *path, size_t path_size,
char *url, size_t url_size)
{
char raw_url[2048];
char raw_url[8192];
char content_dir[PATH_MAX_LENGTH];
char tmp_buf[PATH_MAX_LENGTH];
const char *system = NULL;