sniper Fri Jan 24 05:00:19 2003 EDT
Modified files: (Branch: PHP_4_3)
/php4/ext/standard file.c
Log:
MFH: Fix potential problem for 64-bit architectures.
Index: php4/ext/standard/file.c
diff -u php4/ext/standard/file.c:1.279.2.7 php4/ext/standard/file.c:1.279.2.8
--- php4/ext/standard/file.c:1.279.2.7 Fri Jan 24 03:50:59 2003
+++ php4/ext/standard/file.c Fri Jan 24 05:00:18 2003
@@ -21,7 +21,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: file.c,v 1.279.2.7 2003/01/24 08:50:59 derick Exp $ */
+/* $Id: file.c,v 1.279.2.8 2003/01/24 10:00:18 sniper Exp $ */
/* Synced with php 3.0 revision 1.218 1999-06-16 [ssb] */
@@ -1446,7 +1446,8 @@
{
int result;
zval **file_handle, **format_string;
- int len, type;
+ size_t len;
+ int type;
char *buf;
void *what;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php