Michael Mann
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 Michael Mann
(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.