Skip to content

Commit

Permalink
Merge pull request #356 from reliforp/fix-reading-objects_buecket-ove…
Browse files Browse the repository at this point in the history
…rrun

Fixed the problem of trying to read invalid entries in the objects_bucket
  • Loading branch information
sj-i committed Nov 24, 2023
2 parents 518d7a1 + a705470 commit 6d94026
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1621,6 +1621,9 @@ private function collectObjectsStore(
if ($bucket->address === 0) {
continue;
}
if ($key >= $objects_store->top) {
break;
}
$objects_store_bucket_context = $this->collectZendObjectPointer(
$bucket,
$map_ptr_base,
Expand Down

0 comments on commit 6d94026

Please sign in to comment.