Skip to content

Commit

Permalink
Test cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth committed Nov 19, 2024
1 parent ab8953b commit 5184a57
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crypto/asn1/asn1_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2315,7 +2315,7 @@ const struct GetObjectTestData {
{{0x61, 0x80, 0xC2, 0x02, 0xAB, 0xCD, 0x00, 0x00}, 0x21, 0x01, 0x40, 0},
};

static void verifyGetObject(GetObjectTestData t) {
static void verifyGetObject(const GetObjectTestData& t) {
long length;
int tag;
int tag_class;
Expand Down
3 changes: 1 addition & 2 deletions crypto/pkcs7/pkcs7.c
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,6 @@ static int pkcs7_bio_add_digest(BIO **pbio, X509_ALGOR *alg) {
OPENSSL_PUT_ERROR(PKCS7, ERR_R_BIO_LIB);
goto err;
}
btmp = NULL;

return 1;

Expand Down Expand Up @@ -1014,7 +1013,7 @@ OPENSSL_END_ALLOW_DEPRECATED
if (si_sk != NULL) {
for (size_t ii = 0; ii < sk_PKCS7_SIGNER_INFO_num(si_sk); ii++) {
si = sk_PKCS7_SIGNER_INFO_value(si_sk, ii);
if (si->pkey == NULL) {
if (si == NULL || si->pkey == NULL) {
continue;
}
int sign_nid = OBJ_obj2nid(si->digest_alg->algorithm);
Expand Down
2 changes: 1 addition & 1 deletion crypto/pkcs7/pkcs7_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1673,7 +1673,7 @@ TEST(PKCS7Test, DataInitFinal) {
bio_in.reset(BIO_new(BIO_s_mem()));
ASSERT_TRUE(p7);
ASSERT_TRUE(PKCS7_set_type(p7.get(), NID_pkcs7_encrypted));
bio.reset(PKCS7_dataInit(p7.get(), bio_in.get()));
bio.reset(PKCS7_dataInit(p7.get(), bio_in.release()));
EXPECT_FALSE(bio);
EXPECT_FALSE(PKCS7_dataFinal(p7.get(), bio.get()));

Expand Down

0 comments on commit 5184a57

Please sign in to comment.