summaryrefslogtreecommitdiff
path: root/ext/phar
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2016-02-17 22:44:05 -0800
committerStanislav Malyshev <stas@php.net>2016-02-17 22:44:05 -0800
commit9afb29aa68351aa96f8edca51900f04513e291c7 (patch)
treed06d46988d22af335b597442c7871b56cf9d0447 /ext/phar
parentcf842f1064edeaebc598e7d7071a4a7a039e5bc0 (diff)
downloadphp-git-9afb29aa68351aa96f8edca51900f04513e291c7.tar.gz
Remove TSRMLS_* from code, they are not used anymore
Diffstat (limited to 'ext/phar')
-rw-r--r--ext/phar/phar_object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/phar/phar_object.c b/ext/phar/phar_object.c
index 51b8b13a2a..22404dddbc 100644
--- a/ext/phar/phar_object.c
+++ b/ext/phar/phar_object.c
@@ -4085,7 +4085,7 @@ static int phar_extract_file(zend_bool overwrite, phar_entry_info *entry, char *
new_state.cwd[0] = DEFAULT_SLASH;
new_state.cwd[1] = '\0';
new_state.cwd_length = 1;
- if (virtual_file_ex(&new_state, entry->filename, NULL, CWD_EXPAND TSRMLS_CC) != 0 ||
+ if (virtual_file_ex(&new_state, entry->filename, NULL, CWD_EXPAND) != 0 ||
new_state.cwd_length <= 1) {
if (EINVAL == errno && entry->filename_len > 50) {
char *tmp = estrndup(entry->filename, 50);