http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2035
Summary: infinite loop in packet-atalk.c
Product: Wireshark
Version: SVN
Platform: All
OS/Version: All
Status: NEW
Severity: Normal
Priority: Low
Component: Wireshark
AssignedTo: wireshark-bugs@xxxxxxxxxxxxx
ReportedBy: did447@xxxxxxxxx
Build Information:
Paste the COMPLETE build information from "Help->About Wireshark", "wireshark
-v", or "tshark -v".
--
after bug 2028 I automagically check all dissectors for this condition I found
at least one winner.
Note: many dissectors are using something like:
unsigned i;
unsigned nbe = get_tvb_xxx()
for (i = 1; i <= nbe; i++) { ... }
they will eventually throw an exception because what's in the for block, but
maybe it'd be better to use for (i = 0; i < nbe; ...) when i is only used as
counter.
--
Configure bugmail: http://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.