Unused Value at packet-smb2.c:3820 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
dissect_smb2_FSCTL_SET_OBJECT_ID_EXTENDED (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-smb2.c)![]() | ||||||
![]() | ||||||
3800 | dissect_smb2_FSCTL_SET_OBJECT_ID_EXTENDED(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, int offset, gboolean data_in) | |||||
3801 | { | |||||
3802 | ||||||
3803 | /* There is no out data */ | |||||
3804 | if(!data_in){ | |||||
3805 | return; | |||||
3806 | } | |||||
3807 | ||||||
3808 | /* FILE_OBJECTID_BUFFER->ExtendedInfo */ | |||||
3809 | ||||||
3810 | /* Birth Volume ID */ | |||||
3811 | proto_tree_add_item(tree, hf_smb2_birth_volume_id, tvb, offset, 16, TRUE); | |||||
3812 | offset += 16; | |||||
3813 | ||||||
3814 | /* Birth Object ID */ | |||||
3815 | proto_tree_add_item(tree, hf_smb2_birth_object_id, tvb, offset, 16, TRUE); | |||||
3816 | offset += 16; | |||||
3817 | ||||||
3818 | /* Domain ID */ | |||||
3819 | proto_tree_add_item(tree, hf_smb2_domain_id, tvb, offset, 16, TRUE); | |||||
3820 | offset += 16;
| |||||
3821 | ||||||
3822 | return; | |||||
3823 | } | |||||
![]() |