sniper          Fri Aug  1 07:24:21 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src/sapi/nsapi nsapi.c 
  Log:
  MFH
  
Index: php-src/sapi/nsapi/nsapi.c
diff -u php-src/sapi/nsapi/nsapi.c:1.28.2.19 php-src/sapi/nsapi/nsapi.c:1.28.2.20
--- php-src/sapi/nsapi/nsapi.c:1.28.2.19        Thu Jul 24 13:42:40 2003
+++ php-src/sapi/nsapi/nsapi.c  Fri Aug  1 07:24:20 2003
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: nsapi.c,v 1.28.2.19 2003/07/24 17:42:40 thetaphi Exp $ */
+/* $Id: nsapi.c,v 1.28.2.20 2003/08/01 11:24:20 sniper Exp $ */
 
 /*
  * PHP includes
@@ -208,7 +208,7 @@
        NULL,
        NULL,
        PHP_MINFO(nsapi),
-       "$Revision: 1.28.2.19 $",
+       "$Revision: 1.28.2.20 $",
        STANDARD_MODULE_PROPERTIES
 };
 /* }}} */
@@ -404,9 +404,7 @@
        struct pb_entry *entry;
        nsapi_request_context *rc = (nsapi_request_context *)SG(server_context);
 
-       if (array_init(return_value) == FAILURE) {
-               RETURN_FALSE;
-       }
+       array_init(return_value);
 
        for (i=0; i < rc->rq->headers->hsize; i++) {
                entry=rc->rq->headers->ht[i];
@@ -428,9 +426,7 @@
        struct pb_entry *entry;
        nsapi_request_context *rc = (nsapi_request_context *)SG(server_context);
 
-       if (array_init(return_value) == FAILURE) {
-               RETURN_FALSE;
-       }
+       array_init(return_value);
 
        php_header();
 



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

Reply via email to