File tree 2 files changed +22
-0
lines changed
smb/src/main/java/ch/cyberduck/core/smb
2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,17 @@ protected void afterRead(final int n) throws IOException {
102
102
}
103
103
}
104
104
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
+
105
116
@ Override
106
117
public void close () throws IOException {
107
118
try {
Original file line number Diff line number Diff line change @@ -97,6 +97,17 @@ protected void afterWrite(final int n) throws IOException {
97
97
}
98
98
}
99
99
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
+
100
111
@ Override
101
112
public void close () throws IOException {
102
113
try {
You can’t perform that action at this time.
0 commit comments