summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2011-03-13 14:19:31 +0000
committerFelipe Pena <felipe@php.net>2011-03-13 14:19:31 +0000
commit03b63d57be67e82e225a2df63afb7db82771f23a (patch)
tree1c068c12590b7ae4d90612ac861d740ee08295bb
parent4a0831743ddad00c4e175396eca6ffd6efdcff2b (diff)
downloadphp-git-03b63d57be67e82e225a2df63afb7db82771f23a.tar.gz
- Fixed ZTS build
-rw-r--r--ext/pspell/pspell.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/pspell/pspell.c b/ext/pspell/pspell.c
index 30e4b61fc4..fe6c95bb41 100644
--- a/ext/pspell/pspell.c
+++ b/ext/pspell/pspell.c
@@ -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);
}
/* }}} */