Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f9819ce2 authored by Chris Tate's avatar Chris Tate Committed by android-build-merger
Browse files

Merge \\"Explicitly flush compress/encrypt stream before close\\" into nyc-mr1-dev am: 69818781

am: 0d99301c

Change-Id: Ie0a3a2b93d30278a94893c3b513befaa5edf32ca
parents 83118dd7 0d99301c
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -4328,7 +4328,10 @@ public class BackupManagerService {
                Slog.e(TAG, "Internal exception during full backup", e);
            } finally {
                try {
                    if (out != null) out.close();
                    if (out != null) {
                        out.flush();
                        out.close();
                    }
                    mOutputFile.close();
                } catch (IOException e) {
                    /* nothing we can do about this */