Date: 06/05/99
- Next message: Andrey Zmievski: "Re: [PHP-DEV] newly introduced split bug (3.0.9 showstopper)"
- Previous message: Zeev Suraski: "[PHP-DEV] newly introduced split bug (3.0.9 showstopper)"
- Next in thread: Jim Winstead: "Re: [PHP-DEV] CVS update: php3/functions"
- Reply: Jim Winstead: "Re: [PHP-DEV] CVS update: php3/functions"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Saturday June 5, 1999 @ 10:17
Author: andrey
Update of /repository/php3/functions
In directory php:/tmp/cvs-serv19479/functions
Modified Files:
reg.c
Log Message:
Fixing the split bug.
Index: php3/functions/reg.c
diff -u php3/functions/reg.c:1.100 php3/functions/reg.c:1.101
--- php3/functions/reg.c:1.100 Wed May 26 14:47:26 1999
+++ php3/functions/reg.c Sat Jun 5 10:17:31 1999
@@ -28,7 +28,7 @@
| Jaakko Hyvätti <jaakko <email protected>> |
+----------------------------------------------------------------------+
*/
-/* $Id: reg.c,v 1.100 1999/05/26 18:47:26 andrey Exp $ */
+/* $Id: reg.c,v 1.101 1999/06/05 14:17:31 andrey Exp $ */
#ifdef THREAD_SAFE
#include "tls.h"
#endif
@@ -584,7 +584,7 @@
}
/* otherwise we just have one last element to add to the array */
- if (count == -1) {
+ if (count != 0) {
size = endp - strp;
add_next_index_stringl(return_value, strp, size, 1);
}
-- PHP Development Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Andrey Zmievski: "Re: [PHP-DEV] newly introduced split bug (3.0.9 showstopper)"
- Previous message: Zeev Suraski: "[PHP-DEV] newly introduced split bug (3.0.9 showstopper)"
- Next in thread: Jim Winstead: "Re: [PHP-DEV] CVS update: php3/functions"
- Reply: Jim Winstead: "Re: [PHP-DEV] CVS update: php3/functions"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

