sniper          Mon Dec  1 05:47:09 2003 EDT

  Removed files:               
    /php-src/ext/db     .cvsignore CREDITS config.m4 db.c db.dsp 
                        package.xml php_db.h 
    /php-src/ext/db/tests       .cvsignore 001.phpt 002.phpt 003.phpt 
                                004.phpt 005.phpt 006.phpt test.inc 

  Modified files:              
    /php-src    NEWS 
    /php-src/main       main.c 
  Log:
  - Moved ext/db to PECL.
  
  # Derick copied the sources in CVS repository to preserve CVS log.
  
  
Index: php-src/NEWS
diff -u php-src/NEWS:1.1513 php-src/NEWS:1.1514
--- php-src/NEWS:1.1513 Sun Nov 30 04:41:32 2003
+++ php-src/NEWS        Mon Dec  1 05:47:06 2003
@@ -1,6 +1,8 @@
 PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? Oct 2003, PHP 5 Beta 3
+- Moved extensions to PECL:
+  . ext/db (Jani)
 - Added possibility to call PHP functions as XSLT-functions. (Christian)
 - Added possibility to prevent PHP from registering variables when
   input filter support is used. (Derick)
Index: php-src/main/main.c
diff -u php-src/main/main.c:1.580 php-src/main/main.c:1.581
--- php-src/main/main.c:1.580   Wed Nov 19 01:11:47 2003
+++ php-src/main/main.c Mon Dec  1 05:47:08 2003
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: main.c,v 1.580 2003/11/19 06:11:47 andi Exp $ */
+/* $Id: main.c,v 1.581 2003/12/01 10:47:08 sniper Exp $ */
 
 /* {{{ includes
  */
@@ -1548,7 +1548,7 @@
 PHPAPI int php_execute_script(zend_file_handle *primary_file TSRMLS_DC)
 {
        zend_file_handle *prepend_file_p, *append_file_p;
-       zend_file_handle prepend_file, append_file;
+       zend_file_handle prepend_file = {0}, append_file = {0};
 #if HAVE_BROKEN_GETCWD 
        int old_cwd_fd = -1;
 #else

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

Reply via email to