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

Commit 8d2a6ae4 authored by Christopher Tate's avatar Christopher Tate Committed by Android Git Automerger
Browse files

am f208fd46: Merge "Don\'t crash on null installer package bookkeeping."

* commit 'f208fd46':
  Don't crash on null installer package bookkeeping.
parents 91f8275f f208fd46
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -189,7 +189,7 @@ public class PackageManagerBackupAgent extends BackupAgent {
                if (home != null) {
                    outputBufferStream.writeUTF(home.flattenToString());
                    outputBufferStream.writeLong(homeVersion);
                    outputBufferStream.writeUTF(homeInstaller);
                    outputBufferStream.writeUTF(homeInstaller != null ? homeInstaller : "" );
                    writeSignatureArray(outputBufferStream, homeSigs);
                    writeEntity(data, DEFAULT_HOME_KEY, outputBuffer.toByteArray());
                } else {