From cd2ae18ec127e3901e9389ba51c33d543a2463e8 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Tue, 12 Dec 2017 13:08:24 -0500 Subject: [PATCH] Replace double quotes in thumbnail names --- menu/drivers/xmb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu/drivers/xmb.c b/menu/drivers/xmb.c index 08ceabf3be..c9b7599676 100755 --- a/menu/drivers/xmb.c +++ b/menu/drivers/xmb.c @@ -1004,7 +1004,7 @@ static void xmb_update_thumbnail_path(void *data, unsigned i) if (!string_is_empty(tmp)) { - while((scrub_char_pointer = strpbrk(tmp, "&*/:`<>?\\|"))) + while((scrub_char_pointer = strpbrk(tmp, "&*/:`\"<>?\\|"))) *scrub_char_pointer = '_'; }