Wireshark-dev: [Wireshark-dev] 802.11 whdrs array needed?
From: Gerald Combs <gerald@xxxxxxxxxxxxx>
Date: Thu, 25 Jan 2007 11:39:00 -0800
The 802.11 dissector has the following code:

  wlan_hdr *volatile whdr;
  static wlan_hdr whdrs[4];

  whdr= &whdrs[0];

It looks like whdrs[1] through whdrs[3] are never used.  Should the code
be modified to rotate through each member of whdrs, similar to the
fmtbuf arrays in strutil.c?