libmdbsql: Allow all special characters from valid URIs in paths

This commit is contained in:
bob620 2021-03-24 17:50:33 -05:00
parent 05a1492eef
commit d05c86fa3d

View File

@ -112,7 +112,7 @@ strptime { return STRPTIME; }
(-?[0-9]+|(-?[0-9]*\.[0-9]+)(e[-+]?[0-9]+)?) {
yylval->name = g_strdup(yytext); return NUMBER;
}
~?(\/?[a-z0-9\.\-\xa0-\xff]+)+ {
~?(\/?[a-z0-9\.\-\_\!\~\*\'\(\)\%\xa0-\xff]+)+ {
yylval->name = g_strdup(yytext); return PATH;
}