tony2001                Wed Aug 13 08:08:47 2008 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/ext/pspell pspell.c 
  Log:
  MFH: fix compile warnings (patch by Phil Oleson)
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/pspell/pspell.c?r1=1.45.2.4.2.7.2.4&r2=1.45.2.4.2.7.2.5&diff_format=u
Index: php-src/ext/pspell/pspell.c
diff -u php-src/ext/pspell/pspell.c:1.45.2.4.2.7.2.4 
php-src/ext/pspell/pspell.c:1.45.2.4.2.7.2.5
--- php-src/ext/pspell/pspell.c:1.45.2.4.2.7.2.4        Wed Jul 16 18:34:56 2008
+++ php-src/ext/pspell/pspell.c Wed Aug 13 08:08:47 2008
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: pspell.c,v 1.45.2.4.2.7.2.4 2008/07/16 18:34:56 felipe Exp $ */
+/* $Id: pspell.c,v 1.45.2.4.2.7.2.5 2008/08/13 08:08:47 tony2001 Exp $ */
 
 #define IS_EXT_MODULE
 
@@ -361,7 +361,7 @@
 
        if(pspell_error_number(ret) != 0){
                php_error_docref(NULL TSRMLS_CC, E_WARNING, "PSPELL couldn't 
open the dictionary. reason: %s ", pspell_error_message(ret));
-               delete_pspell_manager(ret);
+               delete_pspell_can_have_error(ret);
                RETURN_FALSE;
        }
        
@@ -471,7 +471,7 @@
 
        if(pspell_error_number(ret) != 0){
                php_error_docref(NULL TSRMLS_CC, E_WARNING, "PSPELL couldn't 
open the dictionary. reason: %s ", pspell_error_message(ret));
-               delete_pspell_manager(ret);
+               delete_pspell_can_have_error(ret);
                RETURN_FALSE;
        }
        
@@ -502,7 +502,7 @@
 
        if(pspell_error_number(ret) != 0){
                php_error_docref(NULL TSRMLS_CC, E_WARNING, "PSPELL couldn't 
open the dictionary. reason: %s ", pspell_error_message(ret));
-               delete_pspell_manager(ret);
+               delete_pspell_can_have_error(ret);
                RETURN_FALSE;
        }
        



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to