mirror of https://github.com/xqemu/xqemu.git
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>
This commit is contained in:
parent
b658c53d2b
commit
a50c7c869a
|
@ -1161,7 +1161,7 @@ int AES_set_encrypt_key(const unsigned char *userKey, const int bits,
|
|||
rk += 8;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
abort();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue