Handle a "should not happen" case, to squelch compiler warnings.

Change-Id: Icb3497924c88963688d60a59c5873a271b7e4d21
Reviewed-on: https://code.wireshark.org/review/9187
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2015-06-26 21:48:14 -07:00
parent b401fb0380
commit ac9f64a9e1
1 changed files with 4 additions and 0 deletions

View File

@ -16654,6 +16654,10 @@ dissect_ieee80211_common (tvbuff_t *tvb, packet_info *pinfo,
case PHDR_802_11_PHY_11AC:
is_ht = TRUE; /* VHT XXX */
break;
default:
is_ht = FALSE; /* "should not happen" */
break;
}
if (fixed_length_header)