changelog Tue Mar 25 01:32:16 2008 UTC
Modified files:
/php-src ChangeLog
Log:
ChangeLog update
http://cvs.php.net/viewvc.cgi/php-src/ChangeLog?r1=1.2997&r2=1.2998&diff_format=u
Index: php-src/ChangeLog
diff -u php-src/ChangeLog:1.2997 php-src/ChangeLog:1.2998
--- php-src/ChangeLog:1.2997 Mon Mar 24 01:31:42 2008
+++ php-src/ChangeLog Tue Mar 25 01:32:15 2008
@@ -1,3 +1,67 @@
+2008-03-24 Ilia Alshanetsky <[EMAIL PROTECTED]>
+
+ * ext/standard/tests/dir/rewinddir_basic.phpt:
+
+ MFB: Fixed test on systems where . and .. order not guaranteed
+
+ * (PHP_5_3)
+ ext/standard/tests/dir/rewinddir_basic.phpt:
+ Fixed test on systems where . and .. order not guaranteed
+
+2008-03-24 Antony Dovgal <[EMAIL PROTECTED]>
+
+ * (PHP_5_2)
+ main/streams/streams.c
+ main/streams/streams.c:
+ MFH: disabled mmap() when copying files to memory
+
+ * main/streams/streams.c:
+ Change streams to not use mmap() when reading files (aka copying to
+ memory).
+
+ There are two problems with mmap() in this case:
+ 1) there is no performance gain since we allocate the memory anyways;
+ 2) memcpy() may crash if somebody truncates this file at the same moment
+ (see http://dev.daylessday.org/diff/mmap.phps for example);
+
+ It seems to work fine with fpassthru(), though why it is so should be
+ investigated.
+
+ Thanks to Andrey Vasilishin for the report and Anight for pressing this
+ through =)
+
+2008-03-24 Steph Fox <[EMAIL PROTECTED]>
+
+ * (PHP_5_3)
+ win32/build/confutils.js:
+ Another thing version_compare() allows...
+
+2008-03-24 Derick Rethans <[EMAIL PROTECTED]>
+
+ * ext/date/lib/timezonedb.h
+ ext/date/lib/timezonedb.h
+ ext/date/lib/timezonedb.h:
+ - Updated to version 2008.2 (2008b)
+
+2008-03-24 Dmitry Stogov <[EMAIL PROTECTED]>
+
+ * (PHP_5_3)
+ ext/standard/tests/strings/006.phpt
+ ext/standard/tests/strings/007.phpt:
+ Fixed tests
+
+ * main/fopen_wrappers.c
+ main/fopen_wrappers.c:
+ Fixed ws and comment
+
+ * ext/standard/tests/dir/readdir_basic.phpt
+ ext/standard/tests/dir/readdir_basic.phpt
+ ext/standard/tests/dir/readdir_basic.phpt
+ ext/standard/tests/dir/readdir_variation6.phpt
+ ext/standard/tests/dir/readdir_variation6.phpt
+ ext/standard/tests/dir/readdir_variation6.phpt:
+ Fixed tests (file order is undefined, so we need to sort() them)
+
2008-03-23 Steph Fox <[EMAIL PROTECTED]>
* (PHP_5_3)