Skip to content

Commit

Permalink
Fix leak in TChunkReadPiece (#10442)
Browse files Browse the repository at this point in the history
  • Loading branch information
va-kuznecov authored Oct 15, 2024
1 parent dc91d6a commit f1035af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/core/blobstorage/pdisk/blobstorage_pdisk_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ void TPDisk::Stop() {
auto& req = JointChunkReads.front();
Y_VERIFY_DEBUG_S(req->GetType() == ERequestType::RequestChunkReadPiece,
"Unexpected request type# " << TypeName(*req));
TRequestBase::AbortDelete(req.Release(), PCtx->ActorSystem);
TRequestBase::AbortDelete(req.Get(), PCtx->ActorSystem);
JointChunkReads.pop();
}

Expand Down

0 comments on commit f1035af

Please sign in to comment.