mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Drop useless cast
This commit is contained in:
parent
2eaf319b45
commit
cd43536b27
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ MBSTRING_API SAPI_TREAT_DATA_FUNC(mbstr_treat_data)
|
|||
case PARSE_POST:
|
||||
case PARSE_GET:
|
||||
case PARSE_STRING:
|
||||
separator = (char *) estrndup(ZSTR_VAL(PG(arg_separator).input), ZSTR_LEN(PG(arg_separator).input));
|
||||
separator = estrndup(ZSTR_VAL(PG(arg_separator).input), ZSTR_LEN(PG(arg_separator).input));
|
||||
break;
|
||||
case PARSE_COOKIE:
|
||||
separator = ";\0";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue