diff options
author | Anatol Belski <ab@php.net> | 2014-09-26 21:34:22 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-09-26 21:34:22 +0200 |
commit | de426f767766f303fc27833ce0f19d885b23cd82 (patch) | |
tree | 93ac39978fbcc32b4aef352528fbbc237f45a9b1 /ext | |
parent | 3bcf8300995f0ec78213eaa449981c5bebed8475 (diff) | |
download | php-git-de426f767766f303fc27833ce0f19d885b23cd82.tar.gz |
cleanup TSRMLS_FETCH in ext/gd
Diffstat (limited to 'ext')
-rw-r--r-- | ext/gd/libgd/gd.c | 4 | ||||
-rw-r--r-- | ext/gd/libgd/gdft.c | 1 | ||||
-rw-r--r-- | ext/gd/libgd/gdkanji.c | 1 |
3 files changed, 0 insertions, 6 deletions
diff --git a/ext/gd/libgd/gd.c b/ext/gd/libgd/gd.c index 54890bc177..6c8db37008 100644 --- a/ext/gd/libgd/gd.c +++ b/ext/gd/libgd/gd.c @@ -102,8 +102,6 @@ void php_gd_error_ex(int type, const char *format, ...) { va_list args; - TSRMLS_FETCH(); - va_start(args, format); php_verror(NULL, "", type, format, args TSRMLS_CC); va_end(args); @@ -113,8 +111,6 @@ void php_gd_error(const char *format, ...) { va_list args; - TSRMLS_FETCH(); - va_start(args, format); php_verror(NULL, "", E_WARNING, format, args TSRMLS_CC); va_end(args); diff --git a/ext/gd/libgd/gdft.c b/ext/gd/libgd/gdft.c index 4148cf47bb..7737fb1801 100644 --- a/ext/gd/libgd/gdft.c +++ b/ext/gd/libgd/gdft.c @@ -412,7 +412,6 @@ static void *fontFetch (char **error, void *key) for (dir = gd_strtok_r (path, PATHSEPARATOR, &strtok_ptr_path); dir; dir = gd_strtok_r (0, PATHSEPARATOR, &strtok_ptr_path)) { if (!strcmp(dir, ".")) { - TSRMLS_FETCH(); #if HAVE_GETCWD dir = VCWD_GETCWD(cur_dir, MAXPATHLEN); #elif HAVE_GETWD diff --git a/ext/gd/libgd/gdkanji.c b/ext/gd/libgd/gdkanji.c index 37f3bd10a0..84096cd3f8 100644 --- a/ext/gd/libgd/gdkanji.c +++ b/ext/gd/libgd/gdkanji.c @@ -74,7 +74,6 @@ error (const char *format,...) { va_list args; char *tmp; - TSRMLS_FETCH(); va_start(args, format); vspprintf(&tmp, 0, format, args); |