Commit 367e43f7 authored by Antoine Cellerier's avatar Antoine Cellerier

limit values extracted by url_extract to 2048 characters instead of 512 characters. refs #1125.

parent f63b74c6
......@@ -349,10 +349,10 @@ void E_(EvaluateRPN)( intf_thread_t *p_intf, mvar_t *vars,
{
char *url = E_(mvar_GetValue)( vars, "url_value" );
char *name = E_(SSPop)( st );
char value[512];
char value[2048];
char *tmp;
E_(ExtractURIValue)( url, name, value, 512 );
E_(ExtractURIValue)( url, name, value, 2048 );
decode_URI( value );
tmp = E_(FromUTF8)( p_intf, value );
E_(SSPush)( st, tmp );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment