mirror of
https://github.com/php/php-src.git
synced 2026-04-01 21:22:13 +02:00
- Value stored to var is never used
This commit is contained in:
@@ -220,14 +220,14 @@ PHPAPI php_url *php_url_parse_ex(char const *str, int length)
|
||||
|
||||
if (query && fragment) {
|
||||
if (query > fragment) {
|
||||
p = e = fragment;
|
||||
e = fragment;
|
||||
} else {
|
||||
p = e = query;
|
||||
e = query;
|
||||
}
|
||||
} else if (query) {
|
||||
p = e = query;
|
||||
e = query;
|
||||
} else if (fragment) {
|
||||
p = e = fragment;
|
||||
e = fragment;
|
||||
}
|
||||
} else {
|
||||
e = p;
|
||||
|
||||
Reference in New Issue
Block a user