dmitry Mon Apr 9 15:38:41 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/main/streams plain_wrapper.c
Log:
Fixed 64-bit support
http://cvs.php.net/viewvc.cgi/php-src/main/streams/plain_wrapper.c?r1=1.52.2.6.2.17&r2=1.52.2.6.2.18&diff_format=u
Index: php-src/main/streams/plain_wrapper.c
diff -u php-src/main/streams/plain_wrapper.c:1.52.2.6.2.17
php-src/main/streams/plain_wrapper.c:1.52.2.6.2.18
--- php-src/main/streams/plain_wrapper.c:1.52.2.6.2.17 Fri Feb 23 23:09:14 2007
+++ php-src/main/streams/plain_wrapper.c Mon Apr 9 15:38:41 2007
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: plain_wrapper.c,v 1.52.2.6.2.17 2007/02/23 23:09:14 pollita Exp $ */
+/* $Id: plain_wrapper.c,v 1.52.2.6.2.18 2007/04/09 15:38:41 dmitry Exp $ */
#include "php.h"
#include "php_globals.h"
@@ -1301,7 +1301,7 @@
#ifdef PHP_WIN32
if (IS_SLASH(filename[0])) {
- int cwd_len;
+ size_t cwd_len;
char *cwd;
cwd = virtual_getcwd_ex(&cwd_len TSRMLS_CC);
/* getcwd() will return always return [DRIVE_LETTER]:/) on
windows. */
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php