@@ -3413,7 +3413,6 @@ xmlNsPtr encode_add_ns(xmlNodePtr node, const char* ns)
3413
3413
}
3414
3414
if (xmlns == NULL ) {
3415
3415
xmlChar * prefix ;
3416
- TSRMLS_FETCH ();
3417
3416
3418
3417
if ((prefix = zend_hash_str_find_ptr (& SOAP_GLOBAL (defEncNs ), (char * )ns , strlen (ns ))) != NULL ) {
3419
3418
xmlns = xmlNewNs (node -> doc -> children , BAD_CAST (ns ), prefix );
@@ -3457,7 +3456,6 @@ static void set_xsi_type(xmlNodePtr node, char *type)
3457
3456
3458
3457
void encode_reset_ns ()
3459
3458
{
3460
- TSRMLS_FETCH ();
3461
3459
SOAP_GLOBAL (cur_uniq_ns ) = 0 ;
3462
3460
SOAP_GLOBAL (cur_uniq_ref ) = 0 ;
3463
3461
if (SOAP_GLOBAL (ref_map )) {
@@ -3470,7 +3468,6 @@ void encode_reset_ns()
3470
3468
3471
3469
void encode_finish ()
3472
3470
{
3473
- TSRMLS_FETCH ();
3474
3471
SOAP_GLOBAL (cur_uniq_ns ) = 0 ;
3475
3472
SOAP_GLOBAL (cur_uniq_ref ) = 0 ;
3476
3473
if (SOAP_GLOBAL (ref_map )) {
@@ -3483,7 +3480,6 @@ void encode_finish()
3483
3480
encodePtr get_conversion (int encode )
3484
3481
{
3485
3482
encodePtr enc ;
3486
- TSRMLS_FETCH ();
3487
3483
3488
3484
if ((enc = zend_hash_index_find_ptr (& SOAP_GLOBAL (defEncIndex ), encode )) == NULL ) {
3489
3485
soap_error0 (E_ERROR , "Encoding: Cannot find encoding" );
@@ -3610,8 +3606,6 @@ static encodePtr get_array_type(xmlNodePtr node, zval *array, smart_str *type TS
3610
3606
3611
3607
static void get_type_str (xmlNodePtr node , const char * ns , const char * type , smart_str * ret )
3612
3608
{
3613
- TSRMLS_FETCH ();
3614
-
3615
3609
if (ns ) {
3616
3610
xmlNsPtr xmlns ;
3617
3611
if (SOAP_GLOBAL (soap_version ) == SOAP_1_2 &&
0 commit comments