fix atol usage

This commit is contained in:
Anatol Belski 2014-09-17 20:43:23 +02:00
parent e3b3e68127
commit b5406ed316

View File

@ -482,7 +482,7 @@ static int php_apache_request_ctor(request_rec *r, php_struct *ctx TSRMLS_DC)
r->no_local_copy = 1;
content_length = (char *) apr_table_get(r->headers_in, "Content-Length");
SG(request_info).content_length = (content_length ? atol(content_length) : 0);
SG(request_info).content_length = (content_length ? ZEND_ATOL(content_length) : 0);
apr_table_unset(r->headers_out, "Content-Length");
apr_table_unset(r->headers_out, "Last-Modified");