mirror of
https://github.com/apache/nuttx.git
synced 2026-08-01 20:28:58 +00:00
crypto/cryptosoft: fix aadlen used uninitialized warning
Signed-off-by: makejian <makejian@xiaomi.com>
This commit is contained in:
parent
69bcbfb207
commit
ac54fe8875
1 changed files with 1 additions and 1 deletions
|
|
@ -291,11 +291,11 @@ int swcr_authenc(FAR struct cryptop *crp)
|
|||
caddr_t buf = (caddr_t)crp->crp_buf;
|
||||
caddr_t aad = (caddr_t)crp->crp_aad;
|
||||
FAR uint32_t *blkp;
|
||||
int aadlen = 0;
|
||||
int blksz = 0;
|
||||
int ivlen = 0;
|
||||
int iskip = 0;
|
||||
int oskip = 0;
|
||||
int aadlen;
|
||||
int len;
|
||||
int i;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue