Test Execution Status | Statistics |
---|---|
Passed | 0.000% (0/43) |
Incident | 0.000% (0/43) |
Skipped | 0.000% (0/43) |
Failed | 0.000% (0/43) |
Requires Manual Checking | 0.000% (0/43) |
Unknown | 0.000% (0/43) |
All | 0.000% (0/43) |
Category | Removed Lines | Inserted Lines | Total |
---|---|---|---|
Modified lines executed: | 0.000% (0/3) | 0.000% (0/3) | 0.000% (0/6) |
Modified lines not executed: | 100.000% (3/3) | 100.000% (3/3) | 100.000% (6/6) |
Source code lines not instrumented: | 0.000% (0/3) | 0.000% (0/3) | 0.000% (0/6) |
Execution Name | State |
---|
Line | Tests | Difference Output |
---|---|---|
diff --git a/crypto/evp/pmeth_lib.c b/crypto/evp/pmeth_lib.c | ||
index 633cb8863d..7fbf895e07 100644 | ||
--- a/crypto/evp/pmeth_lib.c | ||
+++ b/crypto/evp/pmeth_lib.c | ||
@@ -837,21 +837,21 @@ void EVP_PKEY_meth_get_ctrl(const EVP_PKEY_METHOD *pmeth, | ||
837 | void EVP_PKEY_meth_get_check(const EVP_PKEY_METHOD *pmeth, | |
838 | int (**pcheck) (EVP_PKEY *pkey)) | |
839 | { | |
840 | 0 | - if (*pcheck) |
840 | 0 | + if (pcheck != NULL) |
841 | *pcheck = pmeth->check; | |
842 | } | |
843 | ||
844 | void EVP_PKEY_meth_get_public_check(const EVP_PKEY_METHOD *pmeth, | |
845 | int (**pcheck) (EVP_PKEY *pkey)) | |
846 | { | |
847 | 0 | - if (*pcheck) |
847 | 0 | + if (pcheck != NULL) |
848 | *pcheck = pmeth->public_check; | |
849 | } | |
850 | ||
851 | void EVP_PKEY_meth_get_param_check(const EVP_PKEY_METHOD *pmeth, | |
852 | int (**pcheck) (EVP_PKEY *pkey)) | |
853 | { | |
854 | 0 | - if (*pcheck) |
854 | 0 | + if (pcheck != NULL) |
855 | *pcheck = pmeth->param_check; | |
856 | } | |
857 |