提交 5c4b00e0 authored 作者: shlomo.hollander's avatar shlomo.hollander

Fix ensureCapacity in org.h2.mvstore.WriteBuffer.put(ByteBuffer)

上级 458dd3d8
...@@ -185,7 +185,7 @@ public class WriteBuffer { ...@@ -185,7 +185,7 @@ public class WriteBuffer {
* @return this * @return this
*/ */
public WriteBuffer put(ByteBuffer src) { public WriteBuffer put(ByteBuffer src) {
ensureCapacity(buff.remaining()).put(src); ensureCapacity(src.remaining()).put(src);
return this; return this;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论