[PHP-DEV] CVS update: php3/functions From: andrey (php-dev <email protected>)
Date: 06/05/99

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>