helly Sun Aug 10 17:30:36 2003 EDT
Modified files:
/php-src/main network.c
Log:
Initialize this variable to 0 as suggested by sara
Index: php-src/main/network.c
diff -u php-src/main/network.c:1.101 php-src/main/network.c:1.102
--- php-src/main/network.c:1.101 Sat Jun 28 07:12:48 2003
+++ php-src/main/network.c Sun Aug 10 17:30:36 2003
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: network.c,v 1.101 2003/06/28 11:12:48 wez Exp $ */
+/* $Id: network.c,v 1.102 2003/08/10 21:30:36 helly Exp $ */
/*#define DEBUG_MAIN_NETWORK 1*/
@@ -606,7 +606,7 @@
{
php_socket_t clisock = -1;
fd_set rset;
- int error, n;
+ int error = 0, n;
php_sockaddr_storage sa;
socklen_t sl;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php