commit | c388a8c394b69267153cba1168286a31fd2e4b1f | [log] [tgz] |
---|---|---|
author | Krzysztof Stachowiak <krzysztof.stachowiak@arm.com> | Wed Oct 31 16:49:20 2018 +0100 |
committer | Krzysztof Stachowiak <krzysztof.stachowiak@arm.com> | Wed Oct 31 16:49:20 2018 +0100 |
tree | d8e7525978368a4c51526ff11d0ca6192a04ce3c | |
parent | 2b5be1e630dde3f2a87367ecedf2d8d7ad92715e [diff] |
Fix typo in a test condition code
diff --git a/library/x509_crt.c b/library/x509_crt.c index 25aaff3..d0d1cdb 100644 --- a/library/x509_crt.c +++ b/library/x509_crt.c
@@ -2180,7 +2180,7 @@ } /* extra precaution against mistakes in the caller */ - if( parent == NULL ) + if( *parent == NULL ) { *parent_is_trusted = 0; *signature_is_good = 0;