Skip to content

Commit

Permalink
Initialize variable before using it.
Browse files Browse the repository at this point in the history
  • Loading branch information
alandekok committed Jun 3, 2013
1 parent 4328574 commit 9290433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/rlm_eap/types/rlm_eap_ttls/ttls.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ static VALUE_PAIR *diameter2vp(REQUEST *request, REQUEST *fake, SSL *ssl,
size_t size;
size_t data_left = data_len;
char *p;
VALUE_PAIR *first;
VALUE_PAIR *first = NULL;
VALUE_PAIR *vp;
RADIUS_PACKET *packet = fake->packet; /* FIXME: api issues */
vp_cursor_t out;
Expand Down

0 comments on commit 9290433

Please sign in to comment.