Skip to content

Commit

Permalink
Merge branch 'master' into fix/caldav/access-typed-searchquery-proper…
Browse files Browse the repository at this point in the history
…ty-without-init
  • Loading branch information
miaulalala authored Jul 20, 2023
2 parents 2d3d396 + ec4ae84 commit 41323b0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions apps/dav/lib/BulkUpload/MultipartRequestParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -211,13 +211,17 @@ private function readPartContent(int $length, string $md5): string {
throw new BadRequest("Computed md5 hash is incorrect.");
}

$content = stream_get_line($this->stream, $length);
if ($length === 0) {
$content = '';
} else {
$content = stream_get_line($this->stream, $length);
}

if ($content === false) {
throw new Exception("Fail to read part's content.");
}

if (feof($this->stream)) {
if ($length !== 0 && feof($this->stream)) {
throw new Exception("Unexpected EOF while reading stream.");
}

Expand Down

0 comments on commit 41323b0

Please sign in to comment.