Downgrading PHP 7.4 incompatible fread/fwrite checks

pull/10321/head
Philipp 2021-05-25 20:21:51 +02:00
parent 91b474ea6d
commit 681f55315b
No known key found for this signature in database
GPG Key ID: 9A28B7D4FF5667BD
1 changed files with 2 additions and 2 deletions

View File

@ -162,7 +162,7 @@ class HTTPInputData
$lastLine = null;
while (($chunk = fgets($stream, 8096)) !== false && strpos($chunk, $boundary) !== 0) {
if ($lastLine !== null) {
if (fwrite($fileHandle, $lastLine) === false) {
if (!fwrite($fileHandle, $lastLine)) {
$error = UPLOAD_ERR_CANT_WRITE;
break;
}
@ -171,7 +171,7 @@ class HTTPInputData
}
if ($lastLine !== null && $error !== UPLOAD_ERR_CANT_WRITE) {
if (fwrite($fileHandle, rtrim($lastLine, "\r\n")) === false) {
if (!fwrite($fileHandle, rtrim($lastLine, "\r\n"))) {
$error = UPLOAD_ERR_CANT_WRITE;
}
}