Skip to content

Commit

Permalink
aka_av_diameter: fix uninitilized variable
Browse files Browse the repository at this point in the history
  • Loading branch information
razvancrainea authored and bogdan-iancu committed Apr 18, 2024
1 parent 502d894 commit b025650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/aka_av_diameter/aka_av_diameter.c
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ static int aka_av_diameter_print_alg(cJSON *alg_arr, alg_t alg)
{
const str *algs = print_digest_algorithm(alg);
char *p;
int ret;
int ret = -1;

if (!algs)
return -1;
Expand Down

0 comments on commit b025650

Please sign in to comment.