projects
/
m6w6
/
ext-http
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
|
github
raw
|
patch
| inline |
side by side
(parent:
a0884cd
)
fail on parse error
author
Michael Wallner
<mike@php.net>
Fri, 25 Sep 2015 07:09:09 +0000
(09:09 +0200)
committer
Michael Wallner
<mike@php.net>
Fri, 25 Sep 2015 07:09:09 +0000
(09:09 +0200)
php_http_info.c
patch
|
blob
|
history
diff --git
a/php_http_info.c
b/php_http_info.c
index 905091979a70ac08159ac451bb0c561e92181e18..4fb067fcd2610e63a4110663e3172a3e62d9ca64 100644
(file)
--- a/
php_http_info.c
+++ b/
php_http_info.c
@@
-139,6
+139,10
@@
php_http_info_t *php_http_info_parse(php_http_info_t *info, const char *pre_head
} else {
PHP_HTTP_INFO(info).request.url = php_http_url_parse_authority(url, http - url, ~0 TSRMLS_CC);
}
+ if (!PHP_HTTP_INFO(info).request.url) {
+ PTR_SET(PHP_HTTP_INFO(info).request.method, NULL);
+ return NULL;
+ }
} else {
PTR_SET(PHP_HTTP_INFO(info).request.method, NULL);
return NULL;