Changeset 888
- Timestamp:
- 2012-04-05T15:48:50+02:00 (14 months ago)
- File:
-
- 1 edited
-
trunk/xcache.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/xcache.c
r882 r888 930 930 path_buffer_len = snprintf(path_buffer, MAXPATHLEN, "%s/%s", path, filepath); 931 931 if (path_buffer_len < MAXPATHLEN - 1) { 932 if (xstat_func(path_buffer, path_buffer_len, data )) {932 if (xstat_func(path_buffer, path_buffer_len, data TSRMLS_CC)) { 933 933 ret = 1; 934 934 goto finish; … … 952 952 path_buffer_len = dirname_len + filename_len; 953 953 path_buffer[path_buffer_len] = '\0'; 954 if (xstat_func(path_buffer, path_buffer_len, data ) == 0) {954 if (xstat_func(path_buffer, path_buffer_len, data TSRMLS_CC) == 0) { 955 955 ret = 1; 956 956 goto finish; … … 979 979 static int xc_include_path_stat(const char *filepath, char *path_buffer, struct stat *pbuf TSRMLS_DC) /* {{{ */ 980 980 { 981 return xc_include_path_apply(filepath, path_buffer, xc_stat_file, (void *) pbuf TSRMLS_ DC)981 return xc_include_path_apply(filepath, path_buffer, xc_stat_file, (void *) pbuf TSRMLS_CC) 982 982 ? SUCCESS 983 983 : FAILURE; … … 1015 1015 entry_find_include_path_data.stored_entry = stored_entry; 1016 1016 1017 return xc_include_path_apply(filepath, path_buffer, xc_entry_find_include_path_func_unlocked, (void *) &entry_find_include_path_data TSRMLS_ DC)1017 return xc_include_path_apply(filepath, path_buffer, xc_entry_find_include_path_func_unlocked, (void *) &entry_find_include_path_data TSRMLS_CC) 1018 1018 ? SUCCESS 1019 1019 : FAILURE; … … 1076 1076 else { 1077 1077 #ifdef ZEND_ENGINE_2_3 1078 char *opened_path = php_resolve_path(compiler->filename, compiler->filename_len, PG(include_path) );1078 char *opened_path = php_resolve_path(compiler->filename, compiler->filename_len, PG(include_path) TSRMLS_CC); 1079 1079 if (opened_path) { 1080 1080 strcpy(compiler->opened_path_buffer, opened_path);
Note: See TracChangeset
for help on using the changeset viewer.

