patch by: phpbugs at gunnu dot us
defined as a file handle. (Ilia)
- Fixed memory leak in stream_is_local(). (Felipe)
+- Fixed bug #49132 (posix_times returns false without error).
+ (phpbugs at gunnu dot us)
- Fixed bug #49074 (private class static fields can be modified by using
reflection). (Jani)
- Fixed bug #49052 (context option headers freed too early when using
PHP_POSIX_NO_ARGS;
- if((ticks = times(&t)) < 0) {
+ if ((ticks = times(&t)) == -1) {
POSIX_G(last_error) = errno;
RETURN_FALSE;
}