Wireshark-bugs: [Wireshark-bugs] [Bug 7976] Lua code crashes wireshark after update to 1.8.3
Date: Sat, 23 Mar 2013 02:54:40 +0000

changed bug 7976

What Removed Added
CC   hadrielk@yahoo.com

Comment # 23 on bug 7976 from
(In reply to comment #22)
> Something new?

What's the 'something new' that you're looking for?
The Lua script is passing an empty Field abbreviation, which isn't valid.

Change line 529 of your script from this:

    tmp.pf = field(add_filter_prefix(instance.filter) or "",

to this:

    tmp.pf = field(add_filter_prefix(instance.filter) or "unknown",


You are receiving this mail because:
  • You are watching all bug changes.