fix: 修复分块上传文件资源未释放问题 (#5109)
Some checks failed
sync2gitee / repo-sync (push) Failing after 1s

This commit is contained in:
Node 2024-05-23 16:41:19 +08:00 committed by wanghe-fit2cloud
parent 73e901bb94
commit 508e2ec372

View file

@ -609,7 +609,7 @@ func mergeChunks(fileName string, fileDir string, dstDir string, chunkCount int)
if err != nil {
return err
}
defer targetFile.Close()
for i := 0; i < chunkCount; i++ {
chunkPath := filepath.Join(fileDir, fmt.Sprintf("%s.%d", fileName, i))
chunkData, err := os.ReadFile(chunkPath)