Skip to content

Commit

Permalink
stunL fix wrong fingerprint length
Browse files Browse the repository at this point in the history
  • Loading branch information
yosoyubik committed Dec 1, 2023
1 parent 8de9d8d commit 9bbd71c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/vere/io/ames.c
Original file line number Diff line number Diff line change
Expand Up @@ -1670,7 +1670,7 @@ _stun_has_fingerprint(c3_y* buf_y, c3_w buf_len)
}
else {

c3_w len_w = (buf_len - (fin_y - buf_y));
c3_w len_w = buf_len - sizeof(fin_y);

// Skip attribute type and length
c3_w fingerprint = _ames_sift_word(fin_y + sizeof(ned_y));
Expand Down

0 comments on commit 9bbd71c

Please sign in to comment.