Unused Value at packet-ms-mms.c:1193 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
dissect_header_request (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-ms-mms.c)![]() | ||||||
![]() | ||||||
1175 | static void dissect_header_request(tvbuff_t *tvb, proto_tree *tree, guint offset) | |||||
1176 | { | |||||
1177 | gint n = 0; | |||||
1178 | ||||||
1179 | /* Command Level */ | |||||
1180 | proto_tree_add_item(tree, hf_msmms_command_prefix1_command_level, tvb, offset, 4, TRUE); | |||||
1181 | offset += 4; | |||||
1182 | proto_tree_add_item(tree, hf_msmms_command_prefix2, tvb, offset, 4, TRUE); | |||||
1183 | offset += 4; | |||||
1184 | ||||||
1185 | /* Skip 8 unknown words */ | |||||
1186 | for (n=0; n < 8; n++) | |||||
1187 | { | |||||
1188 | offset += 4; | |||||
1189 | } | |||||
1190 | ||||||
1191 | /* Header packet ID type */ | |||||
1192 | proto_tree_add_item(tree, hf_msmms_command_header_packet_id_type, tvb, offset, 4, TRUE); | |||||
1193 | offset += 4;
| |||||
1194 | } | |||||
![]() |