From: Michael Wallner Date: Fri, 15 Nov 2013 10:29:24 +0000 (+0000) Subject: fix ZTS X-Git-Tag: RELEASE_2_1_0_RC3~10^2^2~7 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=19114fd3f40a9a0bf57ba2b7679e52440aa550b8 fix ZTS --- diff --git a/php_http_message_body.c b/php_http_message_body.c index 2697f24..f48dbd6 100644 --- a/php_http_message_body.c +++ b/php_http_message_body.c @@ -852,10 +852,10 @@ PHP_METHOD(HttpMessageBody, stat) } } else { object_init(return_value); - add_property_long_ex(return_value, ZEND_STRS("size"), sb->sb.st_size); - add_property_long_ex(return_value, ZEND_STRS("atime"), sb->sb.st_atime); - add_property_long_ex(return_value, ZEND_STRS("mtime"), sb->sb.st_mtime); - add_property_long_ex(return_value, ZEND_STRS("ctime"), sb->sb.st_ctime); + add_property_long_ex(return_value, ZEND_STRS("size"), sb->sb.st_size TSRMLS_CC); + add_property_long_ex(return_value, ZEND_STRS("atime"), sb->sb.st_atime TSRMLS_CC); + add_property_long_ex(return_value, ZEND_STRS("mtime"), sb->sb.st_mtime TSRMLS_CC); + add_property_long_ex(return_value, ZEND_STRS("ctime"), sb->sb.st_ctime TSRMLS_CC); } } }