summaryrefslogtreecommitdiffstats
path: root/util/aes.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2015-01-26 12:12:26 +0100
committerMichael Tokarev <mjt@tls.msk.ru>2015-02-10 09:27:20 +0300
commita50c7c869a4fa1c78b4c38d3419566dd25d32e90 (patch)
treecf488aeac4aa1966931abcc97a9a30ac8926826c /util/aes.c
parentb658c53d2b87c1e9e0ade887a70ecb0de1474a7b (diff)
downloadhqemu-a50c7c869a4fa1c78b4c38d3419566dd25d32e90.zip
hqemu-a50c7c869a4fa1c78b4c38d3419566dd25d32e90.tar.gz
aes: remove a dead return statement
bits is checked to be 128, 192 or 256 at the beginning of the function. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'util/aes.c')
-rw-r--r--util/aes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/aes.c b/util/aes.c
index 6058f19..3d7c4be 100644
--- a/util/aes.c
+++ b/util/aes.c
@@ -1161,7 +1161,7 @@ int AES_set_encrypt_key(const unsigned char *userKey, const int bits,
rk += 8;
}
}
- return 0;
+ abort();
}
/**
OpenPOWER on IntegriCloud