lbarnaud Tue Nov 11 01:55:19 2008 UTC
Added files:
/php-src/ext/standard/tests/streams stream_get_contents_002.phpt
Modified files:
/php-src/main/streams streams.c
Log:
Fixed stream_get_contents() when using $maxlength and socket is not
closed. [EMAIL PROTECTED] on #46049.
http://cvs.php.net/viewvc.cgi/php-src/main/streams/streams.c?r1=1.173&r2=1.174&diff_format=u
Index: php-src/main/streams/streams.c
diff -u php-src/main/streams/streams.c:1.173
php-src/main/streams/streams.c:1.174
--- php-src/main/streams/streams.c:1.173 Tue Nov 4 17:05:17 2008
+++ php-src/main/streams/streams.c Tue Nov 11 01:55:19 2008
@@ -19,7 +19,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: streams.c,v 1.173 2008/11/04 17:05:17 lbarnaud Exp $ */
+/* $Id: streams.c,v 1.174 2008/11/11 01:55:19 lbarnaud Exp $ */
#define _GNU_SOURCE
#include "php.h"
@@ -1672,7 +1672,7 @@
if (maxlen > 0) {
if (rettype == IS_UNICODE) {
ptr.u = *buf = pemalloc_rel_orig(UBYTES(maxlen + 1),
persistent);
- while ((len < maxlen) & !php_stream_eof(src)) {
+ while ((len < maxlen) && !php_stream_eof(src)) {
int ulen;
ret = php_stream_read_unicode_ex(src, ptr.u,
maxlen - len, maxchars);
@@ -1685,7 +1685,7 @@
return len;
} else {
ptr.s = *buf = pemalloc_rel_orig(maxlen + 1,
persistent);
- while ((len < maxlen) & !php_stream_eof(src)) {
+ while ((len < maxlen) && !php_stream_eof(src)) {
ret = php_stream_read(src, ptr.s, maxlen - len);
len += ret;
ptr.s += ret;
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/streams/stream_get_contents_002.phpt?view=markup&rev=1.1
Index: php-src/ext/standard/tests/streams/stream_get_contents_002.phpt
+++ php-src/ext/standard/tests/streams/stream_get_contents_002.phpt
--TEST--
stream_get_contents() - Testing on socket with $maxlength
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') die("skip: non windows test");
?>
--FILE--
<?php
$sockets = stream_socket_pair(STREAM_PF_UNIX, STREAM_SOCK_STREAM, 0);
stream_set_timeout($sockets[1], 6000);
fwrite($sockets[0], b"foo");
var_dump(stream_get_contents($sockets[1], 3));
?>
--EXPECT--
string(3) "foo"
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php