Skip to content

Commit 734564f

Browse files
committed
Fix file count leak
commit_hash:b472de3acfa4f30ba4b3e630721a38a577c35c85
1 parent aed72e3 commit 734564f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

yql/essentials/core/file_storage/storage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ class TStorage::TImpl: public TIntrusiveListItem<TImpl> {
305305
const bool result = NFs::Remove(storageFile);
306306

307307
if (result || !storageFile.Exists()) {
308-
++CurrentFiles_;
308+
--CurrentFiles_;
309309
CurrentSize_ -= prevFileSize;
310310
}
311311

0 commit comments

Comments
 (0)