helly Sat Mar 18 19:56:35 2006 UTC
Modified files:
/php-src/main/streams memory.c
Log:
- Fix seek/eof issue in temp streams
http://cvs.php.net/viewcvs.cgi/php-src/main/streams/memory.c?r1=1.13&r2=1.14&diff_format=u
Index: php-src/main/streams/memory.c
diff -u php-src/main/streams/memory.c:1.13 php-src/main/streams/memory.c:1.14
--- php-src/main/streams/memory.c:1.13 Thu Jan 5 22:05:44 2006
+++ php-src/main/streams/memory.c Sat Mar 18 19:56:35 2006
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: memory.c,v 1.13 2006/01/05 22:05:44 helly Exp $ */
+/* $Id: memory.c,v 1.14 2006/03/18 19:56:35 helly Exp $ */
#define _GNU_SOURCE
#include "php.h"
@@ -159,7 +159,7 @@
return 0;
}
} else {
- if (ms->fpos < (size_t)(offset)) {
+ if (ms->fpos + (size_t)(offset) > ms->fsize) {
ms->fpos = ms->fsize;
*newoffs = -1;
return -1;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php