File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ PHP NEWS
18
18
- Added imap_savebody(). (Mike)
19
19
- Fixed imagecolorallocate() and imagecolorallocatelapha() to return FALSE
20
20
on error. (Pierre)
21
+ - Fixed bug #36242 (Possible memory corruption in stream_select()). (Tony)
21
22
- Fixed bug #36235 (ocicolumnname returns false before a succesfull fetch).
22
23
(Tony)
23
24
- Fixed bug #36224 (date(DATE_ATOM) gives wrong results). (Derick, Hannes
Original file line number Diff line number Diff line change @@ -750,7 +750,7 @@ PHP_FUNCTION(stream_select)
750
750
751
751
/* If seconds is not set to null, build the timeval, else we wait indefinitely */
752
752
if (sec != NULL ) {
753
- convert_to_long_ex ( & sec );
753
+ convert_to_long ( sec );
754
754
755
755
/* Solaris + BSD do not like microsecond values which are >= 1 sec */
756
756
if (usec > 999999 ) {
You can’t perform that action at this time.
0 commit comments