From 31ab97595e19c8428d7d4b11665312087bbc4fb5 Mon Sep 17 00:00:00 2001 From: ejurgensen Date: Mon, 8 Aug 2022 17:42:54 +0200 Subject: [PATCH] [smartpl] Support larger smart playlists (fixes #1521) --- src/parsers/smartpl_parser.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parsers/smartpl_parser.y b/src/parsers/smartpl_parser.y index d4a4234c..e4139159 100644 --- a/src/parsers/smartpl_parser.y +++ b/src/parsers/smartpl_parser.y @@ -200,7 +200,7 @@ int smartpl_lex_parse(struct smartpl_result *result, const char *input); */ %code requires { struct result_part { - char str[4096]; + char str[8192]; int offset; };