mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
avoid cast
This commit is contained in:
parent
a63a3f58fd
commit
927ddaffeb
@ -166,7 +166,7 @@ int des_set_key(const_des_cblock *key, des_key_schedule schedule)
|
||||
return(-2);
|
||||
}
|
||||
|
||||
k=(DES_LONG *)schedule;
|
||||
k = &schedule->ks.deslong[0];
|
||||
in = &(*key)[0];
|
||||
|
||||
c2l(in,c);
|
||||
|
Loading…
Reference in New Issue
Block a user