Empty switch Statement at packet-wlccp.c:2802 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
dissect_wlccp_qos_tlv (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-wlccp.c)![]() | ||||||
![]() | ||||||
2792 | ||||||
2793 | } /* switch type_id */ | |||||
2794 | ||||||
2795 | return(_offset); | |||||
2796 | ||||||
2797 | } /* dissect_wlccp_rrm_tlv */ | |||||
2798 | ||||||
2799 | static guint dissect_wlccp_qos_tlv(proto_tree *_tree, tvbuff_t *_tvb, guint _offset, gint _type_id, guint _length, proto_item *_ti) | |||||
2800 | { | |||||
2801 | ||||||
2802 | switch (_type_id)
| |||||
2803 | { | |||||
2804 | ||||||
2805 | default: | |||||
2806 | { | |||||
2807 | /* for unknown types, just add them to the tree as a blob */ | |||||
2808 | proto_item_append_text(_ti, " Unknown"); | |||||
2809 | ||||||
2810 | proto_tree_add_item(_tree, hf_wlccp_tlv_unknown_value, _tvb, _offset, _length, FALSE); | |||||
2811 | _offset += _length; | |||||
2812 | ||||||
![]() |