Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-bugs: [Wireshark-bugs] [Bug 5633] EAP-TLS cannot re-initialize properly if previous EA

Date: Thu, 17 Feb 2011 19:05:14 -0800 (PST)
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5633

--- Comment #6 from billyjeans@xxxxxxxxx 2011-02-17 19:05:05 PST ---
The patch is not properly changed for the length check, 
if (len >= 5) {
should be:
if (len > 5 || (len == 5 && eap_type == EAP_TYPE_ID)) {

otherwise, EAP-TLS Aboda packet without flag byte (length=5) will raise an
error.

-- 
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.