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

Commit 281d114c authored by Chia-chi Yeh's avatar Chia-chi Yeh Committed by Android Git Automerger
Browse files

am ab6327bc: am 20cb2310: Merge "KeyStore: Initialize IV correctly." into gingerbread

Merge commit 'ab6327bc'

* commit 'ab6327bc':
  KeyStore: Initialize IV correctly.
parents 2e88d0c4 ab6327bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -166,7 +166,7 @@ static int8_t encrypt_blob(char *name, AES_KEY *aes_key)
    int length;
    int fd;

    if (read(the_entropy, vector, AES_BLOCK_SIZE) != AES_BLOCK_SIZE) {
    if (read(the_entropy, blob.vector, AES_BLOCK_SIZE) != AES_BLOCK_SIZE) {
        return SYSTEM_ERROR;
    }