(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcerpc.c) |
| |
| 4404 | | | dissect_dcerpc_dg_reject_fault (tvbuff_t *tvb, int offset, packet_info *pinfo, |
| 4405 | | | proto_tree *dcerpc_tree, |
| 4406 | | | e_dce_dg_common_hdr_t *hdr) |
| 4407 | | | { |
| 4408 | | | guint32 status; |
| 4409 | | | |
| 4410 | | | offset = dissect_dcerpc_uint32 (tvb, offset, pinfo, dcerpc_tree, |
Unused Value
The value assigned to offset is never subsequently used on any execution path. |
|
| 4411 | | | hdr->drep, hf_dcerpc_dg_status, |
| 4412 | | | &status); |
| 4413 | | | |
| 4414 | | | if (check_col (pinfo->cinfo, COL_INFO)) { |
| 4415 | | | col_append_fstr (pinfo->cinfo, COL_INFO, |
| 4416 | | | ": status: %s", |
| 4417 | | | val_to_str(status, reject_status_vals, "Unknown (0x%08x)")); |
| 4418 | | | } |
| 4419 | | | } |
| |