requiring 'name != NULL' in find_cipher_any() doesn't make sense
This commit is contained in:
parent
7aaa423004
commit
7f91e5ae65
@ -26,10 +26,10 @@ int find_cipher_any(const char *name, int blocklen, int keylen)
|
|||||||
{
|
{
|
||||||
int x;
|
int x;
|
||||||
|
|
||||||
LTC_ARGCHK(name != NULL);
|
if(name != NULL) {
|
||||||
|
|
||||||
x = find_cipher(name);
|
x = find_cipher(name);
|
||||||
if (x != -1) return x;
|
if (x != -1) return x;
|
||||||
|
}
|
||||||
|
|
||||||
LTC_MUTEX_LOCK(<c_cipher_mutex);
|
LTC_MUTEX_LOCK(<c_cipher_mutex);
|
||||||
for (x = 0; x < TAB_SIZE; x++) {
|
for (x = 0; x < TAB_SIZE; x++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user