You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* don't allow strange buffer overruns due to bogus return */
631
-
if (didwrite>count) {
631
+
if (didwrite>0&&didwrite>count) {
632
632
php_error_docref(NULL, E_WARNING, "%s::"USERSTREAM_WRITE" wrote "ZEND_LONG_FMT" bytes more data than requested ("ZEND_LONG_FMT" written, "ZEND_LONG_FMT" max)",
php_error_docref(NULL, E_WARNING, "%s::"USERSTREAM_READ" - read "ZEND_LONG_FMT" bytes more data than requested ("ZEND_LONG_FMT" read, "ZEND_LONG_FMT" max) - excess data will be lost",
php_error_docref(NULL, E_WARNING, "%s::"USERSTREAM_READ" - read "ZEND_LONG_FMT" bytes more data than requested ("ZEND_LONG_FMT" read, "ZEND_LONG_FMT" max) - excess data will be lost",
0 commit comments