Changeset 319936f in git
- Timestamp:
- 2013-09-21T03:48:47Z (6 years ago)
- Branches:
- 3.0
- Children:
- 2827460
- Parents:
- f19bd50
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
mod_cacher/xc_cacher.c
rbfc37a3 r319936f 1019 1019 wrapper = php_stream_locate_url_wrapper(filepath, &path_for_open, 0 TSRMLS_CC); 1020 1020 if (wrapper && wrapper->wops->url_stat 1021 && wrapper != &php_plain_files_wrapper 1022 && wrapper->wops->url_stat(wrapper, path_for_open, PHP_STREAM_URL_STAT_QUIET, &ssb, NULL TSRMLS_CC) == SUCCESS) { 1021 #ifdef ZEND_ENGINE_2 1022 && wrapper->wops->url_stat(wrapper, path_for_open, PHP_STREAM_URL_STAT_QUIET, &ssb, NULL TSRMLS_CC) == SUCCESS 1023 #else 1024 && wrapper->wops->url_stat(wrapper, path_for_open, &ssb TSRMLS_CC) == SUCCESS 1025 #endif 1026 ) { 1023 1027 *statbuf = ssb.sb; 1024 1028 return SUCCESS; … … 2179 2183 || !h->filename 2180 2184 || !SG(request_info).path_translated 2181 2182 2185 ) { 2183 2186 TRACE("%s", "cacher not enabled"); … … 2268 2271 { 2269 2272 xc_gc_op_array_t *op_array = (xc_gc_op_array_t *) pDest; 2270 zend_uint i;2271 2273 #ifdef ZEND_ENGINE_2 2272 2274 if (op_array->arg_info) { 2275 zend_uint i; 2273 2276 for (i = 0; i < op_array->num_args; i++) { 2274 2277 efree((char *) ZSTR_V(op_array->arg_info[i].name));
Note: See TracChangeset
for help on using the changeset viewer.