DCT2000: Don't assign to tag unused value

This commit is contained in:
Martin Mathieson 2022-08-21 19:48:13 +00:00
parent 70dbe58aea
commit 9a5029b364
1 changed files with 2 additions and 1 deletions

View File

@ -1143,7 +1143,8 @@ static void dissect_rrc_lte_nr(tvbuff_t *tvb, gint offset,
/* Now should be Auth params (required) */
guint32 integrity_algorithm;
tag = tvb_get_guint8(tvb, offset++);
/* Skip tag */
offset++;
len = tvb_get_guint8(tvb, offset++);