Merge pull request #10795 from nextcloud/closeFOS

Close FOS
This commit is contained in:
Andy Scherzinger 2022-10-13 11:11:44 +02:00 committed by GitHub
commit 423944137c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -73,7 +73,7 @@ public class PrintAsyncTask extends AsyncTask<Void, Void, Boolean> {
HttpClient client = new HttpClient();
GetMethod getMethod = null;
FileOutputStream fos;
FileOutputStream fos = null;
try {
getMethod = new GetMethod(url);
int status = client.executeMethod(getMethod);
@ -123,6 +123,13 @@ public class PrintAsyncTask extends AsyncTask<Void, Void, Boolean> {
if (getMethod != null) {
getMethod.releaseConnection();
}
if (fos != null) {
try {
fos.close();
} catch (IOException e) {
Log_OC.e(TAG, "Error closing file output stream", e);
}
}
}
return Boolean.TRUE;