dmitry Mon Apr 9 15:38:21 2007 UTC
Modified files:
/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.83&r2=1.84&diff_format=u
Index: php-src/main/streams/plain_wrapper.c
diff -u php-src/main/streams/plain_wrapper.c:1.83
php-src/main/streams/plain_wrapper.c:1.84
--- php-src/main/streams/plain_wrapper.c:1.83 Sat Mar 3 20:41:12 2007
+++ php-src/main/streams/plain_wrapper.c Mon Apr 9 15:38:21 2007
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: plain_wrapper.c,v 1.83 2007/03/03 20:41:12 helly Exp $ */
+/* $Id: plain_wrapper.c,v 1.84 2007/04/09 15:38:21 dmitry Exp $ */
#include "php.h"
#include "php_globals.h"
@@ -1266,7 +1266,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