wez Fri Apr 4 16:09:25 2003 EDT Modified files: /php4/ext/standard streamsfuncs.c Log: Warning fix Index: php4/ext/standard/streamsfuncs.c diff -u php4/ext/standard/streamsfuncs.c:1.8 php4/ext/standard/streamsfuncs.c:1.9 --- php4/ext/standard/streamsfuncs.c:1.8 Fri Apr 4 15:43:36 2003 +++ php4/ext/standard/streamsfuncs.c Fri Apr 4 16:09:25 2003 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: streamsfuncs.c,v 1.8 2003/04/04 20:43:36 pollita Exp $ */ +/* $Id: streamsfuncs.c,v 1.9 2003/04/04 21:09:25 wez Exp $ */ #include "php.h" #include "php_globals.h" @@ -343,13 +343,13 @@ { HashTable *stream_xport_hash; char *stream_xport; - int key_flags, stream_xport_len; + int stream_xport_len; if (ZEND_NUM_ARGS() != 0) { WRONG_PARAM_COUNT; } - if (stream_xport_hash = php_stream_xport_get_hash()) { + if ((stream_xport_hash = php_stream_xport_get_hash())) { array_init(return_value); zend_hash_internal_pointer_reset(stream_xport_hash); while (zend_hash_get_current_key_ex(stream_xport_hash,
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php