修复ImgUtil.write写出临时文件未清理问题

This commit is contained in:
Looly 2024-09-09 22:26:30 +08:00
parent dbc3e7fe16
commit cf492430f7

View File

@ -141,6 +141,9 @@ public class ImgWriter implements Flushable {
throw new IORuntimeException(e);
} finally {
writer.dispose();
// issue#IAPZG7
// FileCacheImageOutputStream会产生临时文件此处关闭清除
IoUtil.closeQuietly(output);
}
}