GSM A RR: de_rr_meas_res(): also show padding as a tree item

This commit is contained in:
Vadim Yanitskiy 2022-10-19 15:36:09 +07:00 committed by AndersBroman
parent 3829e598a5
commit 9de9a7900f
1 changed files with 3 additions and 2 deletions

View File

@ -4343,9 +4343,10 @@ de_rr_meas_res(tvbuff_t *tvb, proto_tree *subtree, packet_info *pinfo _U_, guint
no_ncell_m -= 1;
}
/* The Measurement Results is a type 3 information element with 17 octets length.
* Thus the value part is 17 - 1 == 16 octets long. */
* Thus the value part is 17 - 1 == 16 octets long. Unused bits are set to zero. */
gsm_rr_padding_bits(subtree, tvb, bit_offset, 16, 0x00);
return(16);
}