Fixed bug #60206 (possible integer overflow in content_length)

This commit is contained in:
Xinchen Hui 2011-11-03 07:26:09 +00:00
parent 6c01aacc0d
commit a391535e00
7 changed files with 9 additions and 6 deletions

View file

@ -587,7 +587,7 @@ static void init_request_info(TSRMLS_D)
SG(request_info).request_method = (char *)r->method;
SG(request_info).proto_num = r->proto_num;
SG(request_info).content_type = (char *) table_get(r->subprocess_env, "CONTENT_TYPE");
SG(request_info).content_length = (content_length ? atoi(content_length) : 0);
SG(request_info).content_length = (content_length ? atol(content_length) : 0);
SG(sapi_headers).http_response_code = r->status;
if (r->headers_in) {