tests: Make sure pointer are initialized in torture_pki_rsa
Fixes compiler warnings. Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Этот коммит содержится в:
родитель
3b896750b8
Коммит
1e89896d05
@ -100,8 +100,8 @@ static void torture_pki_rsa_import_privkey_base64_NULL_str(void **state)
|
|||||||
static void torture_pki_rsa_import_privkey_base64(void **state)
|
static void torture_pki_rsa_import_privkey_base64(void **state)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
char *key_str;
|
char *key_str = NULL;
|
||||||
ssh_key key;
|
ssh_key key = NULL;
|
||||||
const char *passphrase = torture_get_testkey_passphrase();
|
const char *passphrase = torture_get_testkey_passphrase();
|
||||||
enum ssh_keytypes_e type;
|
enum ssh_keytypes_e type;
|
||||||
|
|
||||||
@ -129,8 +129,8 @@ static void torture_pki_rsa_import_privkey_base64(void **state)
|
|||||||
static void torture_pki_rsa_publickey_from_privatekey(void **state)
|
static void torture_pki_rsa_publickey_from_privatekey(void **state)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
ssh_key key;
|
ssh_key key = NULL;
|
||||||
ssh_key pubkey;
|
ssh_key pubkey = NULL;
|
||||||
const char *passphrase = NULL;
|
const char *passphrase = NULL;
|
||||||
|
|
||||||
(void) state; /* unused */
|
(void) state; /* unused */
|
||||||
@ -161,9 +161,9 @@ static void torture_pki_rsa_copy_cert_to_privkey(void **state)
|
|||||||
*/
|
*/
|
||||||
int rc;
|
int rc;
|
||||||
const char *passphrase = torture_get_testkey_passphrase();
|
const char *passphrase = torture_get_testkey_passphrase();
|
||||||
ssh_key pubkey;
|
ssh_key pubkey = NULL;
|
||||||
ssh_key privkey;
|
ssh_key privkey = NULL;
|
||||||
ssh_key cert;
|
ssh_key cert = NULL;
|
||||||
|
|
||||||
(void) state; /* unused */
|
(void) state; /* unused */
|
||||||
|
|
||||||
@ -209,7 +209,7 @@ static void torture_pki_rsa_copy_cert_to_privkey(void **state)
|
|||||||
|
|
||||||
static void torture_pki_rsa_import_cert_file(void **state) {
|
static void torture_pki_rsa_import_cert_file(void **state) {
|
||||||
int rc;
|
int rc;
|
||||||
ssh_key cert;
|
ssh_key cert = NULL;
|
||||||
enum ssh_keytypes_e type;
|
enum ssh_keytypes_e type;
|
||||||
|
|
||||||
(void) state; /* unused */
|
(void) state; /* unused */
|
||||||
@ -229,9 +229,9 @@ static void torture_pki_rsa_import_cert_file(void **state) {
|
|||||||
static void torture_pki_rsa_publickey_base64(void **state)
|
static void torture_pki_rsa_publickey_base64(void **state)
|
||||||
{
|
{
|
||||||
enum ssh_keytypes_e type;
|
enum ssh_keytypes_e type;
|
||||||
char *b64_key, *key_buf, *p;
|
char *b64_key = NULL, *key_buf = NULL, *p = NULL;
|
||||||
const char *q;
|
const char *q = NULL;
|
||||||
ssh_key key;
|
ssh_key key = NULL;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
(void) state; /* unused */
|
(void) state; /* unused */
|
||||||
@ -265,8 +265,8 @@ static void torture_pki_rsa_publickey_base64(void **state)
|
|||||||
|
|
||||||
static void torture_pki_rsa_generate_pubkey_from_privkey(void **state) {
|
static void torture_pki_rsa_generate_pubkey_from_privkey(void **state) {
|
||||||
char pubkey_generated[4096] = {0};
|
char pubkey_generated[4096] = {0};
|
||||||
ssh_key privkey;
|
ssh_key privkey = NULL;
|
||||||
ssh_key pubkey;
|
ssh_key pubkey = NULL;
|
||||||
int rc;
|
int rc;
|
||||||
int len;
|
int len;
|
||||||
|
|
||||||
@ -305,11 +305,11 @@ static void torture_pki_rsa_generate_pubkey_from_privkey(void **state) {
|
|||||||
static void torture_pki_rsa_duplicate_key(void **state)
|
static void torture_pki_rsa_duplicate_key(void **state)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
char *b64_key;
|
char *b64_key = NULL;
|
||||||
char *b64_key_gen;
|
char *b64_key_gen = NULL;
|
||||||
ssh_key pubkey;
|
ssh_key pubkey = NULL;
|
||||||
ssh_key privkey;
|
ssh_key privkey = NULL;
|
||||||
ssh_key privkey_dup;
|
ssh_key privkey_dup = NULL;
|
||||||
|
|
||||||
(void) state;
|
(void) state;
|
||||||
|
|
||||||
@ -352,8 +352,8 @@ static void torture_pki_rsa_duplicate_key(void **state)
|
|||||||
static void torture_pki_rsa_generate_key(void **state)
|
static void torture_pki_rsa_generate_key(void **state)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
ssh_key key;
|
ssh_key key = NULL;
|
||||||
ssh_signature sign;
|
ssh_signature sign = NULL;
|
||||||
ssh_session session=ssh_new();
|
ssh_session session=ssh_new();
|
||||||
(void) state;
|
(void) state;
|
||||||
|
|
||||||
@ -396,8 +396,8 @@ static void torture_pki_rsa_generate_key(void **state)
|
|||||||
#ifdef HAVE_LIBCRYPTO
|
#ifdef HAVE_LIBCRYPTO
|
||||||
static void torture_pki_rsa_write_privkey(void **state)
|
static void torture_pki_rsa_write_privkey(void **state)
|
||||||
{
|
{
|
||||||
ssh_key origkey;
|
ssh_key origkey = NULL;
|
||||||
ssh_key privkey;
|
ssh_key privkey = NULL;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
(void) state; /* unused */
|
(void) state; /* unused */
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user