GTP: Fix the version check in decode_qos_umts()

This commit is contained in:
Anders Broman 2021-03-17 10:23:10 +01:00 committed by Wireshark GitLab Utility
parent eda6acb63b
commit f5fb60cfdd
1 changed files with 1 additions and 1 deletions

View File

@ -5265,7 +5265,7 @@ decode_qos_umts(tvbuff_t * tvb, int offset, packet_info * pinfo, proto_tree * tr
break;
}
if ((type == 3) && (rel_ind == 8)) {
if ((type == 3) && (rel_ind >= 8)) {
/* Release 8 or higher P-GW QoS profile */
static int * const arp_flags[] = {
&hf_gtp_qos_arp_pci,