]> granicus.if.org Git - php/commitdiff
- Fixed ZTS build
authorFelipe Pena <felipe@php.net>
Sun, 13 Mar 2011 14:19:31 +0000 (14:19 +0000)
committerFelipe Pena <felipe@php.net>
Sun, 13 Mar 2011 14:19:31 +0000 (14:19 +0000)
ext/pspell/pspell.c

index 30e4b61fc413a5220a27e4153ce64e3c9b22bca7..fe6c95bb41efd84a23f66a2fb6fec95a863342f5 100644 (file)
@@ -452,7 +452,7 @@ static PHP_FUNCTION(pspell_new_personal)
        }
        
        manager = to_pspell_manager(ret);
-       ind = zend_list_insert(manager, le_pspell);
+       ind = zend_list_insert(manager, le_pspell TSRMLS_CC);
        RETURN_LONG(ind);
 }
 /* }}} */
@@ -482,7 +482,7 @@ static PHP_FUNCTION(pspell_new_config)
        }
        
        manager = to_pspell_manager(ret);
-       ind = zend_list_insert(manager, le_pspell);
+       ind = zend_list_insert(manager, le_pspell TSRMLS_CC);
        RETURN_LONG(ind);
 }
 /* }}} */
@@ -742,7 +742,7 @@ static PHP_FUNCTION(pspell_config_create)
        which is not what we want */
        pspell_config_replace(config, "save-repl", "false");
 
-       ind = zend_list_insert(config, le_pspell_config);
+       ind = zend_list_insert(config, le_pspell_config TSRMLS_CC);
        RETURN_LONG(ind);
 }
 /* }}} */