felipe Sun, 13 Mar 2011 14:19:31 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=309171
Log:
- Fixed ZTS build
Changed paths:
U php/php-src/trunk/ext/pspell/pspell.c
Modified: php/php-src/trunk/ext/pspell/pspell.c
===================================================================
--- php/php-src/trunk/ext/pspell/pspell.c 2011-03-13 13:52:32 UTC (rev
309170)
+++ php/php-src/trunk/ext/pspell/pspell.c 2011-03-13 14:19:31 UTC (rev
309171)
@@ -452,7 +452,7 @@
}
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 @@
}
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 @@
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);
}
/* }}} */
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php