Skip to content

Commit 9d9718e

Browse files
committed
remove useless initialization
1 parent 698790f commit 9d9718e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/misc/pkcs12/pkcs12_kdf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ int pkcs12_kdf( int hash_id,
2727
unsigned int tmp, i, j, n;
2828
unsigned char ch;
2929
unsigned char D[MAXBLOCKSIZE], A[MAXBLOCKSIZE], B[MAXBLOCKSIZE];
30-
unsigned char *I = NULL, *key = NULL;
30+
unsigned char *I, *key;
3131
int err = CRYPT_ERROR;
3232

3333
LTC_ARGCHK(pw != NULL);

0 commit comments

Comments
 (0)