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 9566] zbee zcl dissect_zcl_*_attr_id function issue

Date: Wed, 18 Dec 2013 03:33:39 +0000

changed bug 9566

What Removed Added
Status UNCONFIRMED CONFIRMED
Component Wireshark Dissection engine (libwireshark)
Hardware x86-64 All
Ever confirmed   1

Comment # 1 on bug 9566 from
(In reply to comment #0)
> Build Information:
Paste the COMPLETE build information from "Help->About
> Wireshark", "wireshark -v", or "tshark -v".
--
The function, of specific
> cluster, manages the attribute id parsing has a wrong encoding value, like:
> proto_tree_add_item(tree, hf_zbee_zcl_met_idt_attr_id, tvb, *offset, 2,
> attr_id);

So should it be

proto_tree_add_uint(tree, hf_zbee_zcl_met_idt_attr_id, tvb, *offset, 2,
attr_id);

OR 

proto_tree_add_item(tree, hf_zbee_zcl_met_idt_attr_id, tvb, *offset, 2,
ENC_BIG_ENDIAN);


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