Skip to content

Commit

Permalink
aaa_diameter: Fix uninitialized variable
Browse files Browse the repository at this point in the history
Makes GCC happy!
  • Loading branch information
liviuchircu committed Apr 26, 2023
1 parent d571c4d commit 1a753be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/aaa_diameter/aaa_impl.c
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ static int dm_avps2json(void *root, cJSON *avps)
struct dict_object *obj;
struct dict_avp_data dm_avp;
int int_type = 1;
double num_val;
double num_val = 0;

FD_CHECK_GT(fd_msg_avp_hdr(it, &h));

Expand Down

0 comments on commit 1a753be

Please sign in to comment.