Skip to content
This repository has been archived by the owner on Nov 11, 2024. It is now read-only.

Commit

Permalink
Fix clang warning
Browse files Browse the repository at this point in the history
  • Loading branch information
babelouest committed Aug 8, 2023
1 parent def37f1 commit 06ced06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/iddawc.c
Original file line number Diff line number Diff line change
Expand Up @@ -4923,7 +4923,7 @@ int i_verify_id_token(struct _i_session * i_session) {
jwt_t * jwt = NULL;
size_t hash_len = 128, hash_encoded_len = 128;
unsigned char hash[128], hash_encoded[128] = {0};
int alg = GNUTLS_DIG_UNKNOWN;
gnutls_digest_algorithm_t alg = GNUTLS_DIG_UNKNOWN;
gnutls_datum_t hash_data;

if (i_session != NULL && i_session->id_token != NULL) {
Expand Down

0 comments on commit 06ced06

Please sign in to comment.