mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-26 23:25:56 -05:00
[smartpl] Increase size of parse output buffer
To accommodate for larger smart playlists
This commit is contained in:
parent
03d05ea828
commit
a932cc532d
@ -194,10 +194,13 @@ int smartpl_lex_parse(struct smartpl_result *result, const char *input);
|
||||
#endif
|
||||
}
|
||||
|
||||
/* Definition of struct that will hold the parsing result */
|
||||
/* Definition of struct that will hold the parsing result
|
||||
* Some users have sizeable smart playlists, e.g. listing many artist names,
|
||||
* which translate to sizeable sql queries.
|
||||
*/
|
||||
%code requires {
|
||||
struct result_part {
|
||||
char str[512];
|
||||
char str[4096];
|
||||
int offset;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user