Unused Value at packet-rdt.c:780 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
dissect_rdt_rtt_request_packet (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-rdt.c)![]() | ||||||
![]() | ||||||
775 | guint dissect_rdt_rtt_request_packet(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, guint offset) | |||||
776 | { | |||||
777 | guint8 flags1; | |||||
778 | ||||||
779 | /* Flags in first byte */ | |||||
780 | flags1 = tvb_get_guint8(tvb, offset);
| |||||
781 | offset++; | |||||
782 | ||||||
783 | /* Packet type */ | |||||
784 | proto_tree_add_item(tree, hf_rdt_packet_type, tvb, offset, 2, FALSE); | |||||
785 | offset += 2; | |||||
786 | ||||||
787 | if (check_col(pinfo->cinfo, COL_INFO)) | |||||
788 | { | |||||
789 | col_append_str(pinfo->cinfo, COL_INFO, "RTT-REQUEST: "); | |||||
790 | } | |||||
791 | ||||||
792 | return offset; | |||||
793 | } | |||||
![]() |