Skip to content

Commit

Permalink
lib-dcrypt: Compiler warning fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sirainen committed Jun 1, 2016
1 parent 69cf950 commit a991c21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib-dcrypt/dcrypt-openssl.c
Expand Up @@ -1647,8 +1647,8 @@ bool dcrypt_openssl_key_string_get_info(const char *key_data, enum dcrypt_key_fo
enum dcrypt_key_version version = DCRYPT_KEY_VERSION_NA;
enum dcrypt_key_encryption_type encryption_type = DCRYPT_KEY_ENCRYPTION_TYPE_NONE;
enum dcrypt_key_kind kind = DCRYPT_KEY_KIND_PUBLIC;
const char *encryption_key_hash = NULL;
const char *key_hash = NULL;
char *encryption_key_hash = NULL;
char *key_hash = NULL;

if (key_data == NULL) {
if (error_r != NULL)
Expand Down

0 comments on commit a991c21

Please sign in to comment.