diff options
Diffstat (limited to 'ext/standard/base64.c')
-rw-r--r-- | ext/standard/base64.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/standard/base64.c b/ext/standard/base64.c index 3099934764..fe52b79caf 100644 --- a/ext/standard/base64.c +++ b/ext/standard/base64.c @@ -144,7 +144,6 @@ void php3_base64_encode(INTERNAL_FUNCTION_PARAMETERS) { pval *string; unsigned char *result; int ret_length; - TLS_VARS; if (ARG_COUNT(ht)!=1 || getParameters(ht,1,&string) == FAILURE) { WRONG_PARAM_COUNT; @@ -168,7 +167,6 @@ void php3_base64_decode(INTERNAL_FUNCTION_PARAMETERS) { pval *string; unsigned char *result; int ret_length; - TLS_VARS; if (ARG_COUNT(ht)!=1 || getParameters(ht,1,&string) == FAILURE) { WRONG_PARAM_COUNT; |