提交 b3883445 authored 作者: Thomas Mueller's avatar Thomas Mueller

The Recover tool could throw a ArrayIndexOutOfBoundsException.

上级 997cb5a1
...@@ -582,7 +582,7 @@ public class Recover extends Tool implements DataHandler { ...@@ -582,7 +582,7 @@ public class Recover extends Tool implements DataHandler {
try { try {
compress.expand(compressBuffer, 0, size, data, 0, pageSize); compress.expand(compressBuffer, 0, size, data, 0, pageSize);
} catch (ArrayIndexOutOfBoundsException e) { } catch (ArrayIndexOutOfBoundsException e) {
DbException.convertToIOException(e); throw DbException.convertToIOException(e);
} }
} }
String typeName = ""; String typeName = "";
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论