diff options
Diffstat (limited to 'ext/standard/base64.c')
-rw-r--r-- | ext/standard/base64.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/base64.c b/ext/standard/base64.c index fd1c910234..f3acd5b07f 100644 --- a/ext/standard/base64.c +++ b/ext/standard/base64.c @@ -121,7 +121,7 @@ void php_base64_init(void) ch += 16; } sprintf(sp, "};"); - php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Reverse_table:\n%s", s); + php_error_docref(NULL, E_NOTICE, "Reverse_table:\n%s", s); efree(s); } */ @@ -215,7 +215,7 @@ PHP_FUNCTION(base64_encode) size_t str_len; zend_string *result; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &str, &str_len) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &str, &str_len) == FAILURE) { return; } result = php_base64_encode((unsigned char*)str, str_len); @@ -236,7 +236,7 @@ PHP_FUNCTION(base64_decode) size_t str_len; zend_string *result; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|b", &str, &str_len, &strict) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|b", &str, &str_len, &strict) == FAILURE) { return; } result = php_base64_decode_ex((unsigned char*)str, str_len, strict); |