mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-09 09:25:38 +00:00
Update pointer in PSA-based mbedtls_pk_write_pubkey()
This commit is contained in:
parent
62efb9c3ba
commit
4fb8db23b9
|
@ -181,7 +181,8 @@ int mbedtls_pk_write_pubkey( unsigned char **p, unsigned char *start,
|
|||
}
|
||||
else
|
||||
{
|
||||
memmove( *p - len, start, len );
|
||||
*p -= len;
|
||||
memmove( *p, start, len );
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue