Skip to content

Commit

Permalink
Not enough arguments for IdentifyAsn1Key fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aidangarske committed Dec 16, 2024
1 parent 3abdba7 commit 436cd91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal.c
Original file line number Diff line number Diff line change
Expand Up @@ -1865,7 +1865,7 @@ static int IdentifyCert(const byte* in, word32 inSz, void* heap)
}

if (ret == 0) {
ret = IdentifyAsn1Key(key, keySz, 0, heap);
ret = IdentifyAsn1Key(key, keySz, 0, heap, NULL);
}

WFREE(key, heap, DYNTYPE_PUBKEY);
Expand Down

0 comments on commit 436cd91

Please sign in to comment.