Skip to content

Commit 2608d22

Browse files
authored
Merge pull request #16994 from iterate-ch/bugfix/MD-23332-exception
Release share on I/O error.
2 parents 2ad9d5a + 6685819 commit 2608d22

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

smb/src/main/java/ch/cyberduck/core/smb/SMBReadFeature.java

+11
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,17 @@ protected void afterRead(final int n) throws IOException {
102102
}
103103
}
104104

105+
@Override
106+
protected void handleIOException(final IOException e) throws IOException {
107+
try {
108+
session.releaseShare(share);
109+
}
110+
catch(BackgroundException ignored) {
111+
// Ignore
112+
}
113+
throw e;
114+
}
115+
105116
@Override
106117
public void close() throws IOException {
107118
try {

smb/src/main/java/ch/cyberduck/core/smb/SMBWriteFeature.java

+11
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,17 @@ protected void afterWrite(final int n) throws IOException {
9797
}
9898
}
9999

100+
@Override
101+
protected void handleIOException(final IOException e) throws IOException {
102+
try {
103+
session.releaseShare(share);
104+
}
105+
catch(BackgroundException ignored) {
106+
// Ignore
107+
}
108+
throw e;
109+
}
110+
100111
@Override
101112
public void close() throws IOException {
102113
try {

0 commit comments

Comments
 (0)