mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-27 23:55:57 -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
|
#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 {
|
%code requires {
|
||||||
struct result_part {
|
struct result_part {
|
||||||
char str[512];
|
char str[4096];
|
||||||
int offset;
|
int offset;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user