tony2001 Tue Oct 3 23:09:08 2006 UTC Modified files: /php-src/ext/standard file.c Log: use correct type for p_len http://cvs.php.net/viewvc.cgi/php-src/ext/standard/file.c?r1=1.460&r2=1.461&diff_format=u Index: php-src/ext/standard/file.c diff -u php-src/ext/standard/file.c:1.460 php-src/ext/standard/file.c:1.461 --- php-src/ext/standard/file.c:1.460 Mon Oct 2 03:13:47 2006 +++ php-src/ext/standard/file.c Tue Oct 3 23:09:08 2006 @@ -21,7 +21,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: file.c,v 1.460 2006/10/02 03:13:47 pollita Exp $ */ +/* $Id: file.c,v 1.461 2006/10/03 23:09:08 tony2001 Exp $ */ /* Synced with php 3.0 revision 1.218 1999-06-16 [ssb] */ @@ -900,12 +900,11 @@ { zval **ppdir, **ppprefix; char *dir, *prefix; - int dir_len, prefix_len; + int dir_len, prefix_len, p_len; char *opened_path; char *p; int fd; - size_t p_len; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ZZ", &ppdir, &ppprefix) == FAILURE) { return;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php