Skip to content

Commit f1035af

Browse files
authored
Fix leak in TChunkReadPiece (#10442)
1 parent dc91d6a commit f1035af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/blobstorage/pdisk/blobstorage_pdisk_impl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ void TPDisk::Stop() {
327327
auto& req = JointChunkReads.front();
328328
Y_VERIFY_DEBUG_S(req->GetType() == ERequestType::RequestChunkReadPiece,
329329
"Unexpected request type# " << TypeName(*req));
330-
TRequestBase::AbortDelete(req.Release(), PCtx->ActorSystem);
330+
TRequestBase::AbortDelete(req.Get(), PCtx->ActorSystem);
331331
JointChunkReads.pop();
332332
}
333333

0 commit comments

Comments
 (0)