提交 2d9a3510 authored 作者: Noel Grandin's avatar Noel Grandin

add some sanity checking to unlock()

上级 6fc65dc4
......@@ -520,11 +520,13 @@ class FileMemData {
/**
* Unlock the file.
*/
synchronized void unlock() {
synchronized void unlock() throws IOException {
if (isLockedExclusive) {
isLockedExclusive = false;
} else if (sharedLockCount > 0) {
sharedLockCount--;
} else {
sharedLockCount = Math.max(0, sharedLockCount - 1);
throw new IOException("not locked");
}
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论