mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-25 19:35:39 +01:00
Fix missing dereference.
Went unnoticed because it was only on a defensive code path, in an internal function, so not exercised.
This commit is contained in:
parent
7a28e99fa0
commit
a5a3e40c4e
@ -2182,8 +2182,8 @@ static int x509_crt_find_parent(
|
|||||||
/* extra precaution against mistakes in the caller */
|
/* extra precaution against mistakes in the caller */
|
||||||
if( parent == NULL )
|
if( parent == NULL )
|
||||||
{
|
{
|
||||||
parent_is_trusted = 0;
|
*parent_is_trusted = 0;
|
||||||
signature_is_good = 0;
|
*signature_is_good = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
|
Loading…
Reference in New Issue
Block a user