[PHP-CVS-DAILY] cvs: ZendEngine2 / ChangeLog

2004-06-24 Thread changelog
changelog   Thu Jun 24 20:32:18 2004 EDT

  Modified files:  
/ZendEngine2ChangeLog 
  Log:
  ChangeLog update
  
http://cvs.php.net/diff.php/ZendEngine2/ChangeLog?r1=1.491r2=1.492ty=u
Index: ZendEngine2/ChangeLog
diff -u ZendEngine2/ChangeLog:1.491 ZendEngine2/ChangeLog:1.492
--- ZendEngine2/ChangeLog:1.491 Wed Jun 23 20:32:21 2004
+++ ZendEngine2/ChangeLog   Thu Jun 24 20:32:18 2004
@@ -1,3 +1,8 @@
+2004-06-24  Sara Golemon  [EMAIL PROTECTED]
+
+* zend_execute.c:
+  Ease off on severity of new error (Using Resources as array offsets)
+
 2004-06-23  Sara Golemon  [EMAIL PROTECTED]
 
 * zend_execute.c:
@@ -4857,7 +4862,7 @@
 2003-06-10  Jani Taskinen  [EMAIL PROTECTED]
 
 * zend_multiply.h:
-  - Missing $Id: ChangeLog,v 1.491 2004/06/24 00:32:21 changelog Exp $ tag
+  - Missing $Id: ChangeLog,v 1.492 2004/06/25 00:32:18 changelog Exp $ tag
 
 2003-06-10  James Cox  [EMAIL PROTECTED]
 
@@ -6581,7 +6586,7 @@
   zend_types.h
   zend_variables.c
   zend_variables.h:
-  - Added some missing CVS $Id: ChangeLog,v 1.491 2004/06/24 00:32:21 changelog 
Exp $ tags, headers and footers.
+  - Added some missing CVS $Id: ChangeLog,v 1.492 2004/06/25 00:32:18 changelog 
Exp $ tags, headers and footers.
 
 2003-01-30  Ilia Alshanetsky  [EMAIL PROTECTED]
 


[PHP-CVS] cvs: php-src / README.input_filter

2004-06-24 Thread Stefan Esser
sesser  Thu Jun 24 04:49:00 2004 EDT

  Modified files:  
/php-srcREADME.input_filter 
  Log:
  Fixed zend_parse_parameters arguments...
  
  
  
http://cvs.php.net/diff.php/php-src/README.input_filter?r1=1.6r2=1.7ty=u
Index: php-src/README.input_filter
diff -u php-src/README.input_filter:1.6 php-src/README.input_filter:1.7
--- php-src/README.input_filter:1.6 Sun Feb  8 17:49:47 2004
+++ php-src/README.input_filter Thu Jun 24 04:49:00 2004
@@ -85,7 +85,7 @@
 {
 php_info_print_table_start();
 php_info_print_table_row( 2, My Input Filter Support, enabled );
-php_info_print_table_row( 2, Revision, $Revision: 1.6 $);
+php_info_print_table_row( 2, Revision, $Revision: 1.7 $);
 php_info_print_table_end();
 }
 
@@ -155,7 +155,7 @@
 HashTable *hash_ptr;
 char *raw_var;
 
-if(zend_parse_parameters(2 TSRMLS_CC, ls|l, arg, var, var_len) == FAILURE) {
+if(zend_parse_parameters(2 TSRMLS_CC, ls, arg, var, var_len) == FAILURE) {
 return;
 }
 

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



[PHP-CVS] cvs: php-src /ext/tidy tidy.c

2004-06-24 Thread Ilia Alshanetsky
iliaa   Thu Jun 24 10:20:59 2004 EDT

  Modified files:  
/php-src/ext/tidy   tidy.c 
  Log:
  MFB: Fixed bug #1713 (possible crash inside tidy_get_error_buffer()).
  
  
http://cvs.php.net/diff.php/php-src/ext/tidy/tidy.c?r1=1.54r2=1.55ty=u
Index: php-src/ext/tidy/tidy.c
diff -u php-src/ext/tidy/tidy.c:1.54 php-src/ext/tidy/tidy.c:1.55
--- php-src/ext/tidy/tidy.c:1.54Tue Jun  8 10:55:14 2004
+++ php-src/ext/tidy/tidy.c Thu Jun 24 10:20:59 2004
@@ -16,7 +16,7 @@
   +--+
 */
 
-/* $Id: tidy.c,v 1.54 2004/06/08 14:55:14 iliaa Exp $ */
+/* $Id: tidy.c,v 1.55 2004/06/24 14:20:59 iliaa Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include config.h
@@ -952,7 +952,7 @@
php_info_print_table_start();
php_info_print_table_header(2, Tidy support, enabled);
php_info_print_table_row(2, libTidy Release, (char *)tidyReleaseDate());
-   php_info_print_table_row(2, Extension Version, PHP_TIDY_MODULE_VERSION  
($Id: tidy.c,v 1.54 2004/06/08 14:55:14 iliaa Exp $));
+   php_info_print_table_row(2, Extension Version, PHP_TIDY_MODULE_VERSION  
($Id: tidy.c,v 1.55 2004/06/24 14:20:59 iliaa Exp $));
php_info_print_table_end();
 
DISPLAY_INI_ENTRIES();
@@ -1042,7 +1042,11 @@
 {
TIDY_FETCH_OBJECT;
 
-   RETURN_STRING(obj-ptdoc-errbuf-bp, 1);
+   if (obj-ptdoc-errbuf  obj-ptdoc-errbuf-bp) {
+   RETURN_STRING(obj-ptdoc-errbuf-bp, 1);
+   } else {
+   RETURN_FALSE;
+   }
 }
 /* }}} */
 

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



Re: [PHP-CVS] cvs: php-src(PHP_4_3) /ext/mbstring mbstring.c

2004-06-24 Thread Moriyoshi Koizumi
I want to have this patch merged into HEAD.
Moriyoshi
On 2004/06/24, at 7:07, Moriyoshi Koizumi wrote:
moriyoshi   Wed Jun 23 18:07:02 2004 EDT
  Modified files:  (Branch: PHP_4_3)
/php-src/ext/mbstring   mbstring.c
  Log:
  - Fix buf #28466 (mbstring_convert_variables() problem).
http://cvs.php.net/diff.php/php-src/ext/mbstring/mbstring.c? 
r1=1.142.2.44r2=1.142.2.45ty=u
Index: php-src/ext/mbstring/mbstring.c
diff -u php-src/ext/mbstring/mbstring.c:1.142.2.44  
php-src/ext/mbstring/mbstring.c:1.142.2.45
--- php-src/ext/mbstring/mbstring.c:1.142.2.44	Wed Mar 10 15:56:07 2004
+++ php-src/ext/mbstring/mbstring.c	Wed Jun 23 18:07:01 2004
@@ -17,7 +17,7 @@
 
+-- 
+
  */

-/* $Id: mbstring.c,v 1.142.2.44 2004/03/10 20:56:07 moriyoshi Exp $ */
+/* $Id: mbstring.c,v 1.142.2.45 2004/06/23 22:07:01 moriyoshi Exp $ */
 /*
  * PHP4 Multibyte String module mbstring
@@ -3273,6 +3273,7 @@
stack[stack_level] = 
var;
stack_level++;
var = hash_entry;
+   
SEPARATE_ZVAL(hash_entry);
target_hash = 
HASH_OF(*var);
if (target_hash != 
NULL) {

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

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